Skip to content

docs+code: pre-submission cleanup sweep #29

docs+code: pre-submission cleanup sweep

docs+code: pre-submission cleanup sweep #29

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
cache: pip
cache-dependency-path: pyproject.toml
# v2.0+ has zero runtime deps and no installable build target.
# tests/conftest.py adds the skill's lib/ to sys.path on its own,
# so we only need pytest.
- run: pip install pytest
- run: pytest -q