Skip to content

Bump actions/checkout from 5 to 6 #470

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #470

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
linters:
runs-on: ubuntu-22.04
strategy:
matrix:
lint-command:
- ruff check --output-format=github .
- black --check --diff .
- mypy model_bakery
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.13"
cache: pip
- run: python -m pip install .[test]
- run: ${{ matrix.lint-command }}
sqlite-tests:
name: SQLite - Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
django-version: ["4.2", "5.0", "5.1", "5.2", "6.0"]
exclude:
# Python 3.9 only supports Django 4.2
- python-version: "3.9"
django-version: "5.0"
- python-version: "3.9"
django-version: "5.1"
- python-version: "3.9"
django-version: "5.2"
- python-version: "3.9"
django-version: "6.0"
# Django 6.0 supports Python 3.12+
- python-version: "3.10"
django-version: "6.0"
- python-version: "3.11"
django-version: "6.0"
steps:
- uses: actions/checkout@v6
- name: Set TOX_ENV
run: echo "TOX_ENV=py$(echo ${{ matrix.python-version }} | tr -d .)-django$(echo ${{ matrix.django-version }} | tr -d .)-sqlite" >> $GITHUB_ENV
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel tox
- name: Run tox targets for ${{ matrix.python-version }}
run: tox run -e ${{ env.TOX_ENV }}
- name: Upload coverage data
uses: actions/upload-artifact@v5
with:
name: coverage-data-${{ env.TOX_ENV }}
include-hidden-files: true
path: '.coverage.*'
if-no-files-found: ignore
postgresql-tests:
name: PostgreSQL - Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }}, ${{ matrix.variant }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
django-version: ["4.2", "5.0", "5.1", "5.2", "6.0"]
variant: ["postgresql", "postgresql-psycopg3"]
exclude:
# Python 3.9 only supports Django 4.2
- python-version: "3.9"
django-version: "5.0"
- python-version: "3.9"
django-version: "5.1"
- python-version: "3.9"
django-version: "5.2"
- python-version: "3.9"
django-version: "6.0"
# Django 6.0 supports Python 3.12+
- python-version: "3.10"
django-version: "6.0"
- python-version: "3.11"
django-version: "6.0"
# Python 3.9 doesn't support psycopg3
- python-version: "3.9"
variant: "postgresql-psycopg3"
include:
# Latest Python/Django with contenttypes disabled
- python-version: "3.14"
django-version: "6.0"
variant: "postgresql-no-contenttypes"
env:
PGUSER: postgres
PGPASSWORD: postgres
services:
postgis:
image: postgis/postgis
env:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v6
- name: Set TOX_ENV
run: echo "TOX_ENV=py$(echo ${{ matrix.python-version }} | tr -d .)-django$(echo ${{ matrix.django-version }} | tr -d .)-${{ matrix.variant }}" >> $GITHUB_ENV
- name: Set up PostgreSQL
run: |
sudo apt-get update
sudo apt-get install -y gdal-bin
psql template1 -c "CREATE EXTENSION citext;" -U postgres -h localhost -p 5432
psql template1 -c "CREATE EXTENSION hstore;" -U postgres -h localhost -p 5432
psql template1 -c "CREATE EXTENSION postgis;" -U postgres -h localhost -p 5432
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel tox
- name: Run tox targets for ${{ matrix.python-version }}
run: tox run -e ${{ env.TOX_ENV }}
- name: Upload coverage data
uses: actions/upload-artifact@v5
with:
name: coverage-data-${{ env.TOX_ENV }}
include-hidden-files: true
path: '.coverage.*'
if-no-files-found: ignore
coverage:
name: Coverage
runs-on: ubuntu-22.04
needs: [sqlite-tests, postgresql-tests]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: Install dependencies
run: python -m pip install --upgrade coverage[toml]
- name: Download data
uses: actions/download-artifact@v6
with:
pattern: coverage-data-*
merge-multiple: true
- name: Combine coverage and fail if it's <95%
run: |
python -m coverage combine
python -m coverage html --skip-covered --skip-empty
python -m coverage report --fail-under=95
- name: Upload HTML report
if: ${{ failure() }}
uses: actions/upload-artifact@v5
with:
name: html-report
path: htmlcov