Add support for Fedora 42, remove support for Fedora 39 and Ubuntu 20.04 #51
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
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: "0 7 1 * *" | |
| name: test | |
| jobs: | |
| test: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| platform: | |
| - rockylinux9 | |
| - centos-stream10 | |
| - centos-stream9 | |
| - fedora42 | |
| - fedora41 | |
| - fedora40 | |
| - ubuntu2404 | |
| - ubuntu2204 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v3 | |
| - run: | | |
| python3 -m pip install --upgrade pip | |
| python3 -m pip install tox | |
| - run: | | |
| tox -e ${{ matrix.platform }} -- test |