Skip to content

Add files via upload #6

Add files via upload

Add files via upload #6

Workflow file for this run

name: tests
on:
push:
pull_request:
permissions:
contents: read
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- run: python -m pip install --upgrade pip
- run: python -m pip install -e '.[dev]'
- run: python -m unittest discover -s tests -v
- run: ruff check .
- run: python scripts/audit_public_repo.py