README: direct download link, and reports go to the forum thread not … #3
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: tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" # matches Indigo 2025.2's embedded Python | |
| - name: Install test tools | |
| run: pip install pytest ruff | |
| # tests/run.sh IS the gate — pytest, py_compile, XML well-formedness and | |
| # ruff, in one place. CI runs the same script rather than restating its | |
| # steps in YAML: two copies of a gate drift, and the half that drifts is | |
| # always the one nobody watches. | |
| - name: Contract tests (tests/run.sh) | |
| run: ./tests/run.sh |