Adam Goldsmith 7399c010fd
Some checks failed
Run Unit Tests / test-package (3.11) (push) Failing after 10s
Run Unit Tests / test-package (3.12) (push) Failing after 14s
Run Unit Tests / test-package (3.13) (push) Failing after 13s
Add gitea workflow to run offline tests
2024-12-05 14:07:25 -05:00

21 lines
451 B
YAML

name: Run Unit Tests
on:
push:
jobs:
test-package:
strategy:
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13"
runs-on: ubuntu-latest
container: ghcr.io/astral-sh/uv:0.5-python${{ matrix.python-version }}-bookworm-slim
steps:
- uses: actions/checkout@v4
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest