Tag v1.10.0 (Drop Python 3.9) #1030
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
| name: tests | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ['3.10', '3.14'] | |
| django-version: ['4.2', '5.1', '5.2'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| - name: Set up Python ${{ matrix.python-version }} | |
| run: uv python install ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: uv sync --all-extras --dev | |
| - name: Install django @ ${{ matrix.django-version }} | |
| run: uv pip install DJANGO~=${{ matrix.django-version }} | |
| - name: Install django-extensions @ ${{ matrix.django-extensions }}, if exists | |
| if: ${{ matrix.django-extensions != '' }} | |
| run: uv pip install 'django-extensions${{ matrix.django-extensions }}' | |
| - name: Print python versions | |
| run: | | |
| python -V | |
| uv run python -V | |
| - name: Lint with ruff check | |
| run: uv run ruff check . | |
| - name: Format with ruff format | |
| run: uv run ruff format . --check | |
| - name: Lint with mypy | |
| run: uv run mypy . | |
| - name: Test with pytest | |
| run: uv run py.test --cov=./ --cov-report=xml | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| release: | |
| runs-on: ubuntu-latest | |
| needs: build | |
| if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
| strategy: | |
| matrix: | |
| python-version: ['3.14'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| - name: Set up Python ${{ matrix.python-version }} | |
| run: uv python install ${{ matrix.python-version }} | |
| - name: Build package | |
| run: uv build | |
| - name: Publish package | |
| if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| user: __token__ | |
| password: ${{ secrets.PYPI_API_TOKEN }} | |
| skip_existing: true |