feat(scoring): introduce healthy scoring v5 #117
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 | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| # Node is only needed for the poster-JS syntax check; with it installed, | |
| # tests/test_smoke.py runs `node --check` instead of skipping it. | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Byte-compile paxel.py | |
| run: python3 -m py_compile paxel.py | |
| - name: Run tests (pipeline smoke + invariants + poster JS node --check) | |
| run: python3 -m unittest discover -s tests -v |