docs: reduce README architecture disclosure #143
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: Adversarial invariants | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| adversarial-invariants: | |
| 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.11' | |
| - name: Install pytest | |
| run: python -m pip install pytest | |
| - name: Run adversarial invariant tests | |
| run: python -m pytest tests/adversarial/test_invariants.py |