Skip to content

Update dotnet-build.yml #160

Update dotnet-build.yml

Update dotnet-build.yml #160

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0
- name: Run tests
run: dotnet test Tests/Tests.csproj --nologo --logger "console;verbosity=detailed"