Skip to content

Merge pull request #202 from PetrDlouhy/django50 #60

Merge pull request #202 from PetrDlouhy/django50

Merge pull request #202 from PetrDlouhy/django50 #60

Workflow file for this run

name: Test suite
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
tox:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10']
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Setup Redis
uses: zhulik/[email protected]
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip tox tox-gh-actions
pip install .
- name: Run test suite with tox
run: tox