iterate benching #668
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: Benchmark Reports | |
on: | |
push | |
env: | |
CARGO_TERM_COLOR: always | |
NODE_VERSION: "18.17.1" | |
PYTHON_VERSION: "3.11" | |
RUST_TOOLCHAIN_VERSION: "1.80" | |
RUST_TOOLCHAIN_COMPONENTS: rustfmt clippy | |
jobs: | |
runBenchmark: | |
runs-on: ubuntu-latest | |
name: run benchmark | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: run benching script | |
run: ./bench.sh | |
- name: preserve bench artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: benchmarks | |
path: | | |
target/criterion/**/* | |