Update django.yml

This commit is contained in:
Bhupesh Varshney
2020-01-23 20:02:46 +05:30
committed by GitHub
parent 533b24eb42
commit e1de33dd71
+3 -3
View File
@@ -1,4 +1,4 @@
name: Django Build
name: Django CI
on: [push]
@@ -17,12 +17,12 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
env:
env: #define SECRET_KEY in Secrets
SECRET_KEY: ${{ secrets.SECRET_KEY }}
DEBUG: False
run: |