Hardening v0.4.x skill-as-code structural closure #704
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: | |
| runtime-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - name: Install checker dependencies | |
| run: python -m pip install --upgrade pip -r requirements-ci.txt | |
| - name: Build and verify runtime | |
| run: python tools/run_local_ci.py --strict-pwsh |