Bump BenchmarkDotNet from 0.14.0 to 0.15.4 #3141
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |