Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 5 days 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 (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-04T05:21:35.000Z (12 days ago)
- Last Synced: 2024-11-04T06:21:28.815Z (12 days ago)
- Topics: csharp, dotnet, dotnet-core, github-actions
- Language: C#
- Size: 264 KB
- Stars: 8
- Watchers: 3
- Forks: 9
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotnet-ci-example
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/nogic1008/dotnet-ci-example)](https://github.com/nogic1008/dotnet-ci-example/releases)
[![.NET CI](https://github.com/nogic1008/dotnet-ci-example/actions/workflows/dotnet-ci.yml/badge.svg)](https://github.com/nogic1008/dotnet-ci-example/actions/workflows/dotnet-ci.yml)
[![codecov](https://codecov.io/gh/nogic1008/dotnet-ci-example/branch/main/graph/badge.svg?token=wkwjZuMLHC)](https://codecov.io/gh/nogic1008/dotnet-ci-example)
[![CodeFactor](https://www.codefactor.io/repository/github/nogic1008/dotnet-ci-example/badge)](https://www.codefactor.io/repository/github/nogic1008/dotnet-ci-example)
[![License](https://img.shields.io/github/license/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
```