2020-05-01 16:04:36 +03:00
|
|
|
name: Tests
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
max-parallel: 4
|
|
|
|
matrix:
|
2023-06-07 17:36:51 +03:00
|
|
|
django: ["3.2", "4.1", "4.2"]
|
2022-09-19 15:31:04 +03:00
|
|
|
python-version: ["3.8", "3.9", "3.10"]
|
2022-01-07 23:26:07 +03:00
|
|
|
include:
|
2023-05-04 15:19:24 +03:00
|
|
|
- django: "4.1"
|
|
|
|
python-version: "3.11"
|
2023-06-07 16:52:40 +03:00
|
|
|
- django: "4.2"
|
|
|
|
python-version: "3.11"
|
2020-05-01 16:04:36 +03:00
|
|
|
steps:
|
2023-05-03 13:25:16 +03:00
|
|
|
- uses: actions/checkout@v3
|
2020-05-01 16:04:36 +03:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2023-05-03 13:25:16 +03:00
|
|
|
uses: actions/setup-python@v4
|
2020-05-01 16:04:36 +03:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install tox tox-gh-actions
|
|
|
|
- name: Test with tox
|
|
|
|
run: tox
|
|
|
|
env:
|
|
|
|
DJANGO: ${{ matrix.django }}
|