2026-05-07 21:27:41 -04:00
|
|
|
name: tests
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches: [main]
|
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
pytest:
|
2026-05-07 22:06:48 -04:00
|
|
|
runs-on: ubuntu-latest
|
2026-05-07 21:27:41 -04:00
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
|
2026-05-07 22:06:48 -04:00
|
|
|
- uses: actions/setup-python@v5
|
|
|
|
|
with:
|
|
|
|
|
python-version: '3.12'
|
|
|
|
|
|
2026-05-07 21:27:41 -04:00
|
|
|
- name: Install package + test deps
|
|
|
|
|
run: pip install --no-cache-dir -e '.[test]'
|
|
|
|
|
|
|
|
|
|
- name: Run pytest
|
|
|
|
|
run: pytest -v
|