[codex] Align README headline with portfolio copy #79
Workflow file for this run
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: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Install package and test dependencies | |
| run: python -m pip install --upgrade pip && python -m pip install ".[test]" | |
| - name: Rebuild release artifact | |
| run: python scripts/validate_release.py --output proofs/artifacts/mental_release_matrix.json | |
| - name: Run tests | |
| run: pytest tests -q --junitxml validation/results/pytest.xml |