ci(deps): bump the github-actions group across 1 directory with 3 updates #2663
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
| # https://docs.djangoproject.com/en/stable/faq/install/#what-python-version-can-i-use-with-django | |
| name: test | |
| "on": | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test-matrix: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ['3.10', '3.11', '3.12', '3.13'] | |
| django-version: ['5.2', '6.0'] | |
| exclude: | |
| # Django 6.0 requires Python 3.12+ | |
| - python-version: '3.10' | |
| django-version: '6.0' | |
| - python-version: '3.11' | |
| django-version: '6.0' | |
| steps: | |
| - uses: actions/checkout@v7.0.1 | |
| - name: Set up python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v7.0.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Poetry | |
| uses: snok/install-poetry@v1.4.2 | |
| with: | |
| version: 1.8.4 | |
| virtualenvs-create: true | |
| virtualenvs-in-project: true | |
| installer-parallel: true | |
| - name: Set up cache | |
| uses: actions/cache@v6.1.0 | |
| with: | |
| path: .venv | |
| key: venv-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }} | |
| - name: Install dependencies | |
| run: | | |
| poetry install | |
| poetry run pip install --upgrade pip | |
| poetry run pip install --upgrade "django==${{ matrix.django-version }}.*" | |
| - name: Run tests | |
| run: | | |
| poetry run pytest | |
| poetry check | |
| poetry run pip check | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v7.0.0 | |
| with: | |
| files: ./coverage.xml |