Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Benchmark

Benchmark #3

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Benchmark
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c release --no-restore
- name: Benchmark
run: dotnet run -c release --no-build --verbosity normal --project test/benchmark