Skip to content

new readme

new readme #271

Workflow file for this run

name: .NET
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
3.1.x
6.0.x
7.0.x
8.0.x
dotnet-quality: 'preview'
- name: Restore dependencies
run: dotnet restore src/Nino.sln
- name: Build
run: dotnet build src/Nino.sln --no-restore
- name: Test
run: dotnet test src/Nino.sln --no-build --verbosity normal