Skip to content

Bump sqlparse from 0.4.4 to 0.5.0 #11

Bump sqlparse from 0.4.4 to 0.5.0

Bump sqlparse from 0.4.4 to 0.5.0 #11

Workflow file for this run

name: Django CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
python-version: [3.7, 3.8, 3.9]
django-version: [1.11, 2, 3]
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 django
run: pip install django==${{ matrix.django-version }}
- name: Run Tests
run: |
python setup.py test