Skip to content

Bump actions/setup-dotnet from 3 to 4 (#23) #155

Bump actions/setup-dotnet from 3 to 4 (#23)

Bump actions/setup-dotnet from 3 to 4 (#23) #155

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"