Skip to content

Convert to NuGet

Convert to NuGet #53

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Install .NET dependencies
run: dotnet restore
- name: Build .NET
run: dotnet build
- name: Test .NET
run: dotnet test --no-build --verbosity normal