Run benchmarks in quick mode in CI #4
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: CI | |
on: | |
pull_request: | |
push: | |
tags: | |
- '*' | |
jobs: | |
test: | |
name: Run benchmarks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install asv | |
run: python -m pip install asv | |
- name: Configure asv | |
run: asv machine --machine GA --os unknown --arch unknown --cpu unknown --ram unknown | |
- name: Run benchmarks in quick mode | |
run: asv run --quick |