[#142] Drop python 3.8, which will no longer be supported in 2024-10 #385
Workflow file for this run
This file contains 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, pull_request] | |
jobs: | |
build: | |
name: build (Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }}) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
max-parallel: 5 | |
matrix: | |
python-version: ['3.9', '3.10', '3.11', '3.12'] | |
django-version: ['4.2', '5.0', '5.1'] | |
exclude: | |
- django-version: '5.0' | |
python-version: '3.9' | |
- django-version: '5.1' | |
python-version: '3.9' | |
- django-version: 'main' | |
python-version: '3.9' | |
services: | |
postgres: | |
image: postgres:9.6-alpine | |
env: | |
POSTGRES_USER: user | |
POSTGRES_PASSWORD: password | |
POSTGRES_DB: testing | |
ports: | |
- 5439:5432 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
cache-dependency-glob: "pyproject.toml" | |
cache-suffix: ${{ matrix.python-version }} | |
- name: Install Python | |
run: uv python install ${{ matrix.python-version }} | |
env: | |
UV_PYTHON_PREFERENCE: only-managed | |
- name: Tox tests | |
run: uv run --only-dev tox -v | |
env: | |
DJANGO: ${{ matrix.django-version }} | |
TEST_WITH_POSTGRES: 1 |