Skip to content

Commit

Permalink
Perform benchmarks on different platforms.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheVeryDarkness committed Oct 10, 2024
1 parent d18ffa0 commit 46596e4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ permissions:
jobs:
benchmark:
name: Run Criterion.rs benchmark example
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand All @@ -29,7 +32,7 @@ jobs:
--project iof \
--token '${{ secrets.BENCHER_API_TOKEN }}' \
--branch main \
--testbed ubuntu-latest \
--testbed ${{ matrix.os }} \
--threshold-measure latency \
--threshold-test t_test \
--threshold-max-sample-size 64 \
Expand Down

0 comments on commit 46596e4

Please sign in to comment.