fix: adds pyenv to setup script #20
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: | |
push: | |
branches: ["main"] | |
paths-ignore: | |
- "README.md" | |
pull_request: | |
branches: ["main"] | |
paths-ignore: | |
- "README.md" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
benchmark-tests: | |
runs-on: | |
ubuntu-latest-32-cores | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: bash install_dep_run.sh | |
- name: Run all benchmarks across all models | |
run: source .env/bin/activate; cargo nextest run benchmarking_tests::tests::run_benchmarks_ --test-threads 1 |