Benchmarking #2
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: codspeed-benchmarks | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
# Note even though this job is called "pre-commit" and runs "pre-commit", this job will run | |
# also POST-commit on main also! In case there are mishandled merge conflicts / bad auto-resolves | |
# when merging into main branch. | |
branches: [main] | |
jobs: | |
benchmarks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: "3.11" | |
- name: Run benchmarks | |
uses: CodSpeedHQ/action@v1 | |
with: | |
token: ${{ secrets.CODSPEED_TOKEN }} | |
run: poetry run pytest tests/ --codspeed |