Merge fixes

This commit is contained in:
Frank Wiles 2020-07-29 09:05:23 -05:00
commit ad3f984159
2 changed files with 32 additions and 0 deletions

30
.github/workflows/django.yml vendored Normal file
View file

@ -0,0 +1,30 @@
name: Django CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7, 3.8]
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 -r requirements.txt
- name: Run Tests
run: coverage run runtests.py

View file

@ -1 +1,3 @@
Django
coverage
coveralls