chore: record publication auth blocker #1
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: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Install test dependencies | |
| run: python -m pip install --upgrade pip pytest uv | |
| - name: Run tests | |
| run: PYTHONDONTWRITEBYTECODE=1 python -m pytest -q | |
| - name: Run release proof | |
| run: PYTHONDONTWRITEBYTECODE=1 python scripts/release_proof.py | |
| - name: Run VM USE smoke script against checkout | |
| run: AETHERMIND_REPO_URL="file://$PWD" AETHERMIND_REF=main bash scripts/vm_use_smoke.sh |