Skip to content

Update pre-commit hook codespell-project/codespell to v2.3.0 #58

Update pre-commit hook codespell-project/codespell to v2.3.0

Update pre-commit hook codespell-project/codespell to v2.3.0 #58

Workflow file for this run

---
name: Python benchmarks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: "**/requirements_dev.txt"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
- name: Run benchmarks with pytest
run: |
pytest --benchmark-only