Bump Moq from 4.20.2 to 4.20.69 #370
This file contains 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
name: Results | |
on: | |
push | |
jobs: | |
Publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- name: Build benchmarks | |
run: dotnet publish -c Release | |
- name: Run benchmarks | |
run: dotnet BenchmarkMockNet.dll | |
working-directory: BenchmarkMockNet/bin/Release/net7.0/publish | |
- name: Upload results report | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Results Report | |
path: BenchmarkMockNet/bin/Release/net7.0/publish/Results.md | |
- name: Upload raw results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Raw Results | |
path: BenchmarkMockNet/bin/Release/net7.0/publish/BenchmarkDotNet.Artifacts/results/*.md |