https://github.com/nogic1008/dotnet-ci-example
Example of .NET Core + Github Actions
https://github.com/nogic1008/dotnet-ci-example
csharp dotnet dotnet-core github-actions
Last synced: about 1 year ago
JSON representation
Example of .NET Core + Github Actions
- Host: GitHub
- URL: https://github.com/nogic1008/dotnet-ci-example
- Owner: nogic1008
- License: mit
- Created: 2019-11-19T04:28:36.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2025-04-24T23:40:25.000Z (about 1 year ago)
- Last Synced: 2025-04-27T14:39:21.494Z (about 1 year ago)
- Topics: csharp, dotnet, dotnet-core, github-actions
- Language: C#
- Size: 293 KB
- Stars: 8
- Watchers: 1
- Forks: 9
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotnet-ci-example
[](https://github.com/nogic1008/dotnet-ci-example/releases)
[](https://github.com/nogic1008/dotnet-ci-example/actions/workflows/dotnet-ci.yml)
[](https://codecov.io/gh/nogic1008/dotnet-ci-example)
[](https://www.codefactor.io/repository/github/nogic1008/dotnet-ci-example)
[](LICENSE)
Example of .NET + Github Actions
## Setup
```console
> dotnet restore
```
## Commands
```console
# Lint & Fix
> dotnet format
# Unit Test
> dotnet test
# Build
> dotnet build
```