rename: trellis to scafld #8
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: Review Gate Smoke | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| review-gate-smoke: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Validate CLI syntax | |
| run: PYTHONDONTWRITEBYTECODE=1 python3 -m py_compile cli/scafld | |
| - name: Validate smoke harness syntax | |
| run: bash -n tests/review_gate_smoke.sh | |
| - name: Run review gate smoke matrix | |
| run: ./tests/review_gate_smoke.sh all |