Merge pull request #58 from jeeves-sh/upgrade-python-3.14 #122
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: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| POETRY_KEYRING_ENABLED: "false" | |
| PYTHON_KEYRING_BACKEND: keyring.backends.null.Keyring | |
| strategy: | |
| matrix: | |
| python-version: ['3.11', '3.12', '3.14'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install poetry | |
| run: | | |
| python -m pip install -U pip | |
| python -m pip install "poetry==2.3.0" | |
| - name: Set up cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: .venv | |
| key: venv-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }} | |
| - name: Install system dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y --no-install-recommends libxml2-dev libxslt1-dev pkg-config | |
| sudo rm -rf /var/lib/apt/lists/* | |
| - name: Install dependencies | |
| run: | | |
| poetry config virtualenvs.in-project true | |
| poetry install | |
| - name: Lint | |
| run: poetry run j lint | |
| - name: Test | |
| run: poetry run j test | |
| # Upload coverage to codecov: https://codecov.io/ | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| file: ./coverage.xml |