🔧 Prepare 4.7.0 #3061
Workflow file for this run
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Libplanet benchmark (for pull requests) | |
on: | |
pull_request: {} | |
permissions: | |
contents: write | |
deployments: write | |
jobs: | |
benchmark: | |
name: Run Benchmark.Net benchmarks | |
continue-on-error: true | |
strategy: | |
matrix: | |
os: | |
- [macOS, self-hosted, ARM64] | |
- linux-8cores | |
- windows-8cores | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.pull_request.head.sha }} | |
- uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Run benchmark | |
run: dotnet run --project Libplanet.Benchmarks -c Release -- --exporters json --filter '*' | |
- name: Compare benchmark result | |
uses: planetarium/github-action-benchmark@v1 | |
with: | |
name: Benchmark.Net Benchmark | |
tool: 'benchmarkdotnet' | |
output-file-path: BenchmarkDotNet.Artifacts/results/Combined.Benchmarks.json | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
benchmark-data-dir-path: dev/bench/${{ github.base_ref }}/${{ matrix.os }} | |
save-data-file: false | |
alert-threshold: '200%' | |
comment-on-alert: true | |
fail-on-alert: true | |
alert-comment-cc-users: '@libplanet' |