Skip to content

Bump BenchmarkDotNet and 6 others #33

Bump BenchmarkDotNet and 6 others

Bump BenchmarkDotNet and 6 others #33

Workflow file for this run

name: Run Unit Tests
on:
push:
branches:
- main
paths-ignore:
- '**/README.md'
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x' # Specify the .NET version you are using
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Run tests
run: dotnet test --configuration Release --no-build --verbosity normal