AutoEQ Live #6
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: AutoEQ Live | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "17 6 * * 1" | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }} | |
| cancel-in-progress: true | |
| jobs: | |
| autoeq-live: | |
| name: AutoEQ.app compatibility | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| - name: Install check dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y python3-gi | |
| python3 -m venv --system-site-packages .venv | |
| .venv/bin/python -m pip install --upgrade pip | |
| .venv/bin/python -m pip install numpy | |
| - name: Run AutoEQ live compatibility check | |
| run: PYTHONPATH=src .venv/bin/python tools/check_autoeq_live.py |