Skip to content

test release procedure v0.3.7 #12

test release procedure v0.3.7

test release procedure v0.3.7 #12

Workflow file for this run

# .github/workflows/tests.yml
name: tests
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[test]"
- name: Run tests
run: |
pytest -v