Files
starter-workflows/ci/django.yml
T
Bhupesh Varshney b1cd1732eb remove additional config
Removed Additional setup for reading SECRET_KEYs
2020-02-07 18:37:20 +05:30

27 lines
557 B
YAML

name: Django CI
on: [push]
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: |
python manage.py test