Skip to content

Commit

Permalink
add a separate benchmarks checking job
Browse files Browse the repository at this point in the history
  • Loading branch information
sfmig committed Apr 30, 2024
1 parent 9c38f8f commit b4d096c
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,22 @@ jobs:
python-version: ${{ matrix.python-version }}
secret-codecov-token: ${{ secrets.CODECOV_TOKEN }}

- name: Check benchmarks
benchmarks:
name: Check benchmarks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
shell: bash
run: |
pip install --upgrade pip
pip install asv
asv check -v -E existing
python -mpip install --upgrade pip
python -mpip install asv
- name: Run asv check
shell: bash
run: asv check -v -E existing

build_sdist_wheels:
name: Build source distribution
Expand Down

0 comments on commit b4d096c

Please sign in to comment.