fix: record parsed argv as Atlas and Vault provenance (#6) #20
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: | |
| branches: [master, main] | |
| pull_request: | |
| branches: [master, main] | |
| jobs: | |
| check-all: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| cache: pip | |
| cache-dependency-path: backend/requirements.txt | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install -r backend/requirements.txt | |
| - name: check-all | |
| env: | |
| PYTHONPATH: backend:. | |
| run: python scripts/check_all.py | |
| - name: Engine version sanity | |
| env: | |
| PYTHONPATH: backend | |
| run: | | |
| python -c "from aurora import __version__; from aurora.config import ENGINE_VERSION; assert __version__ == ENGINE_VERSION, (__version__, ENGINE_VERSION); print('engine', ENGINE_VERSION)" |