Skip to content

Bump django from 2.2.28 to 3.2.24 #49

Bump django from 2.2.28 to 3.2.24

Bump django from 2.2.28 to 3.2.24 #49

Workflow file for this run

name: Tox
on: [push]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.8, 3.6]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Test with tox
run: |
python -m pip install --upgrade pip
pip install tox
tox -e py,bandit
flake8:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with flake8
run: |
pip install flake8
flake8 .