[pull] master from Corvia:master #519
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': | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] | |
| django-version: ['4.2', '5.1', '5.2'] | |
| exclude: | |
| # Exclude Python 3.9 with Django 5.1 and 5.2 | |
| - python-version: '3.9' | |
| django-version: '5.1' | |
| - python-version: '3.9' | |
| django-version: '5.2' | |
| # Exclude Python 3.13 with Django 4.2 | |
| - python-version: '3.13' | |
| django-version: '4.2' | |
| env: | |
| DJANGO_DATABASE_USER: django | |
| DJANGO_DATABASE_PASSWORD: passwd123 | |
| DJANGO_DATABASE_NAME: db | |
| DJANGO_DATABASE_HOST: 127.0.0.1 | |
| services: | |
| postgres: | |
| image: postgres:16 | |
| env: | |
| POSTGRES_USER: ${{ env.DJANGO_DATABASE_USER }} | |
| POSTGRES_PASSWORD: ${{ env.DJANGO_DATABASE_PASSWORD }} | |
| ports: | |
| - 5432/tcp | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Poetry | |
| uses: snok/install-poetry@v1 | |
| with: | |
| version: 2.1.1 | |
| virtualenvs-create: true | |
| virtualenvs-in-project: true | |
| installer-parallel: true | |
| - name: Set up cache | |
| uses: actions/cache@v5 | |
| with: | |
| path: .venv | |
| key: venv-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }} | |
| - name: Install dependencies | |
| run: | | |
| poetry install | |
| poetry run pip install -U pip | |
| poetry run pip install -U "django==${{ matrix.django-version }}.*" | |
| - name: Run code quality checks | |
| run: | | |
| poetry check | |
| poetry run pip check | |
| poetry run rstfmt --check . | |
| poetry run ruff check --output-format=github . | |
| poetry run ruff format --check . | |
| - name: Run tests | |
| run: | | |
| poetry run pytest | |
| env: | |
| DJANGO_DATABASE_PORT: ${{ job.services.postgres.ports[5432] }} | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| files: ./coverage.xml |