Skip to content

Bump django from 2.2.18 to 3.2.24 in /example #74

Bump django from 2.2.18 to 3.2.24 in /example

Bump django from 2.2.18 to 3.2.24 in /example #74

Workflow file for this run

name: Python tox
on: ["push", "pull_request"]
# on: "push"
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
pip install -r example/requirements.txt
- name: Run Tox
run: tox