Skip to content

Update csproj to make more nuget friendly #4

Update csproj to make more nuget friendly

Update csproj to make more nuget friendly #4

Workflow file for this run

name: test
on:
pull_request:
branches: [master]
types: [synchronize, opened, reopened, ready_for_review, unlabeled]
paths-ignore:
- 'README.md'
push:
branches: [master]
paths-ignore:
- 'README.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.*
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal