Skip to content

Add GitHub Action to run codespell and ruff #1

Add GitHub Action to run codespell and ruff

Add GitHub Action to run codespell and ruff #1

Workflow file for this run

name: pytest
on:
push:
pull_request:
workflow_dispatch:
jobs:
pytest:
strategy:
fail-fast: false
matrix: # https://github.com/actions/python-versions/releases
python-version: ["3.8", "3.10", "3.12", "3.13", "pypy-3.10"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prerelease: true
- run: pip install --upgrade pip setuptools;python_version>='3.12'
- run: pip install pytest
- run: pip install --editable .
- run: pytest