Skip to content

release 2.5.0+poly.2024.1.11 #7

release 2.5.0+poly.2024.1.11

release 2.5.0+poly.2024.1.11 #7

Workflow file for this run

name: Tests
on: push
jobs:
build:
runs-on: ubuntu-latest
name: Python ${{ matrix.python-version }} / ${{ matrix.django }}
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
django:
- django32
- django42
- django50
exclude:
- django: django50
python-version: "3.8"
- django: django50
python-version: "3.9"
- django: django32
python-version: "3.11"
- django: django32
python-version: "3.12"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip setuptools wheel
pip install tox
- name: Run tests
run: tox -v -e py-${{ matrix.django }}