v1.3: richer diagnostics, WAN evidence and TV wallboard #389
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 | |
| strategy: | |
| matrix: | |
| python-version: ["3.11", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: python -m pip install -r requirements.txt | |
| - name: Compile Python sources | |
| run: python -m py_compile monitor.py dashboard.py router_adapters.py | |
| - name: Run unit tests | |
| run: python -m unittest discover -s tests -v | |
| - name: Check shell scripts | |
| run: bash -n install.sh configure.sh run_monitor.sh run_dashboard.sh |