Helps if I install pycodestyle

This commit is contained in:
2020-12-27 18:03:28 +00:00
committed by GitHub
parent 6a8c567cfe
commit fedbc5ce4c

View File

@@ -13,7 +13,7 @@ jobs:
strategy: strategy:
max-parallel: 4 max-parallel: 4
matrix: matrix:
python-version: [3.6, 3.7, 3.8] python-version: [3.8]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@@ -31,6 +31,7 @@ jobs:
- name: Install Dependencies - name: Install Dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install pycodestyle
pip install -r requirements.txt pip install -r requirements.txt
python manage.py collectstatic --noinput python manage.py collectstatic --noinput
- name: Basic Checks - name: Basic Checks