Skip to content

Bump BenchmarkDotNet from 0.14.0 to 0.15.4 #3141

Bump BenchmarkDotNet from 0.14.0 to 0.15.4

Bump BenchmarkDotNet from 0.14.0 to 0.15.4 #3141

Workflow file for this run

# Build, test .NET Solution (without executables)
name: "ReFlex: Build, Test .NET Solution"
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# run when main branch is updated and on pull requests
# as result, child workflows are not triggered anymore on prs
pull_request:
types: [ opened, reopened, edited, synchronize ]
branches:
- main
jobs:
# build .NET solution
build_reflex:
name: build and test .NET Solution
runs-on: windows-latest
steps:
- name: checkout repo with submodules
uses: actions/checkout@main
- name: setup .NET and restore nuget packages
uses: ./.github/actions/net-install
- name: build ReFlex without external sensors
shell: pwsh
working-directory: ${{ github.workspace }}
run: dotnet build ReFlex.sln -c CI /p:Platform=x64
- name: execute tests (no reports)
run: dotnet test