Skip to content

migrate from tox-gh-actions to tox-gh #367

migrate from tox-gh-actions to tox-gh

migrate from tox-gh-actions to tox-gh #367

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
name: test with Python ${{ matrix.python-version }} and Django ${{ matrix.django-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 5
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
django-version:
- '3.2'
- '4.0'
- '4.2'
- '5.0'
- '5.1'
- 'main'
exclude:
- python-version: '3.11'
django-version: '3.2'
- python-version: '3.12'
django-version: '3.2'
- django-version: '5.0'
python-version: '3.8'
- django-version: '5.0'
python-version: '3.9'
- django-version: '5.1'
python-version: '3.8'
- django-version: '5.1'
python-version: '3.9'
- django-version: 'main'
python-version: '3.8'
- 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:
TOX_GH_MAJOR_MINOR: ${{ matrix.python-version }}
DJANGO: ${{ matrix.django-version }}
TEST_WITH_POSTGRES: 1