add testing for PR #118 fix constraint creation using the wrong table… #263
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.8', '3.9', '3.10'] | |
django-version: ['3.2', '4.0', '4.2'] | |
include: | |
- django-version: 'main' | |
python-version: '3.9' | |
- django-version: 'main' | |
python-version: '3.10' | |
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: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: | |
${{ matrix.python-version }}-pip-${{ hashFiles('**/pyproject.toml') }} | |
restore-keys: | | |
${{ matrix.python-version }}-pip- | |
- name: Install dependencies | |
run: | | |
curl -LsSf https://astral.sh/uv/install.sh | sh | |
uv pip install --system --upgrade tox-uv tox-gh-actions | |
- name: Tox tests | |
run: | | |
tox -v | |
env: | |
DJANGO: ${{ matrix.django-version }} | |
TEST_WITH_POSTGRES: 1 |