Skip to content

chore: refresh download badge after releases #63

chore: refresh download badge after releases

chore: refresh download badge after releases #63

name: Repository Checks
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: python -m pip install -e ".[dev]"
- name: Enforce workspace safety boundary
run: python scripts/check-repo-safety.py
- name: Run public repository test suite
run: python -m pytest tests/test_*.py