Skip to content

Require GitHub workflow in onboarding #2

Require GitHub workflow in onboarding

Require GitHub workflow in onboarding #2

Workflow file for this run

name: audit
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: windows-latest
permissions:
contents: read
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Run test suite
run: python -m pytest -q
- name: Validate satellite contract
run: python scripts/satellite_governance.py validate --root .
- name: Report test surface
run: python scripts/satellite_governance.py test-surface --root . --strict