This repository was archived by the owner on Oct 1, 2025. It is now read-only.
⬆️ Auto-updated dependencies on 2025-09-15 (#152) #309
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 tox | |
| on: [push, pull_request] | |
| jobs: | |
| ci-tox: | |
| name: ${{ matrix.name }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| include: | |
| - name: Ubuntu 22.04 - Python 3.9 | |
| os: ubuntu-22.04 | |
| python-minor: 9 | |
| - name: Ubuntu 22.04 - Python 3.10 | |
| os: ubuntu-22.04 | |
| python-minor: 10 | |
| - name: Ubuntu 22.04 - Python 3.11 | |
| os: ubuntu-22.04 | |
| python-minor: 11 | |
| - name: Ubuntu 24.04 - Python 3.12 | |
| os: ubuntu-24.04 | |
| python-minor: 12 | |
| - name: Ubuntu 24.04 - Python 3.13 | |
| os: ubuntu-24.04 | |
| python-minor: 13 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.${{ matrix.python-minor }}' | |
| - name: Install packages | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y python3-pip tox | |
| - name: Setup Python environment | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| - name: Run tox | |
| run: tox -r -e py3${{ matrix.python-minor }} |