refactor!: refactor archive extract directories #188
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: Benchmarks | |
on: | |
pull_request: | |
types: [ opened, reopened, synchronize ] | |
permissions: | |
contents: read | |
jobs: | |
benchmark: | |
name: Run Benchmarks | |
runs-on: ubuntu-22.04 | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
components: 'llvm-tools-preview' | |
toolchain: stable | |
- name: Install benchmarking tools | |
uses: bencherdev/bencher@main | |
- name: Run benchmarks | |
env: | |
BENCHER_API_TOKEN: ${{ secrets.BENCHER_API_TOKEN }} | |
BENCHER_PROJECT: theseus-rs-postgresql-embedded | |
BENCHER_ADAPTER: rust_criterion | |
run: | | |
bencher run \ | |
--branch $GITHUB_HEAD_REF \ | |
--ci-number "${{ github.event.number }}" \ | |
--github-actions "${{ secrets.GITHUB_TOKEN }}" \ | |
--err \ | |
"cargo bench --features blocking" |