Tweak Makefile #161
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: Test | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-26.04 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - run: python -c "import sys; print(sys.version)" | |
| - run: > | |
| sudo apt-get update && sudo apt-get install -y | |
| flake8 | |
| gettext | |
| gir1.2-gst-plugins-base-1.0 | |
| gir1.2-gstreamer-1.0 | |
| gir1.2-gtk-4.0 | |
| gir1.2-spelling-1 | |
| gstreamer1.0-gtk4 | |
| gstreamer1.0-libav | |
| gstreamer1.0-plugins-bad | |
| gstreamer1.0-plugins-good | |
| gstreamer1.0-plugins-ugly | |
| iso-codes | |
| make | |
| python3 | |
| python3-build | |
| python3-charset-normalizer | |
| python3-dev | |
| python3-gi | |
| python3-gi-cairo | |
| python3-pytest | |
| python3-validate-pyproject | |
| python3-venv | |
| xvfb | |
| - run: xvfb-run make check | |
| - run: pytest aeidon | |
| - run: xvfb-run pytest gaupol | |
| - run: xvfb-run tools/test-install |