Skip to content

build(deps): bump gunicorn from 20.0.4 to 22.0.0 #86

build(deps): bump gunicorn from 20.0.4 to 22.0.0

build(deps): bump gunicorn from 20.0.4 to 22.0.0 #86

Workflow file for this run

name: Django CI
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8, 3.9]
django-version: [3.1, 3.2, 4.0]
steps:
- uses: actions/checkout@v2
- 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
pip install -r dev_requirements.txt
pip install Django==${{ matrix.django-version }}
pip install .
- name: Run Tests
run: |
pytest
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: ammaraskar/sphinx-action@master
with:
docs-folder: "docs/"