v0.1.0 #65
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install python deps | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install jsonschema PyYAML pytest | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: '17' | |
| - name: Build scanner | |
| run: mvn -f java/scan-agent/pom.xml -DskipTests package | |
| - name: Architecture guards | |
| run: python -m pytest -q tests/test_architecture_boundaries.py tests/test_contract_model_interfaces.py | |
| - name: Unit and replay tests | |
| run: python -m pytest -q | |
| - name: Repository acceptance smoke | |
| run: python scripts/ci/degraded_runtime_acceptance.py | |
| - name: Skill validate | |
| run: python scripts/quick_validate.py skills/sqlopt-postgresql |