Skip to content

more attempts + benchmarks #63

more attempts + benchmarks

more attempts + benchmarks #63

Workflow file for this run

name: .NET
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Unit tests
run: dotnet test --verbosity m --no-build
continue-on-error: false