Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```