change main to version #11
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
name: Rust Benchmark Master | ||
on: | ||
push: | ||
branches: [ "master" ] | ||
jobs: | ||
benchmark_base_branch: | ||
name: Continuous Benchmarking with Bencher | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: bencherdev/bencher@v0.4.8 | ||
- name: Track base branch benchmarks with Bencher | ||
run: | | ||
bencher run \ | ||
--project bleuscore \ | ||
--token '${{ secrets.BENCHER_API_TOKEN }}' \ | ||
--branch master \ | ||
--testbed ubuntu-latest \ | ||
# --adapter rust \ | ||
--err \ | ||
cargo bench --all |