Bump django from 3.2.20 to 3.2.23 #95
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PyLint Django | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [ '3.8', '3.9', '3.10' ] | |
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 Python Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pylint | |
pip install pylint-django | |
pip install -r requirements.txt | |
- name: Run PyLint - base | |
run: | | |
pylint --fail-under=6 --load-plugins pylint_django --load-plugins pylint_django.checkers.migrations --django-settings-module=collab_coursebook.settings base | |
- name: Run PyLint - content | |
run: | | |
pylint --fail-under=6 --load-plugins pylint_django --load-plugins pylint_django.checkers.migrations --django-settings-module=collab_coursebook.settings content | |
- name: Run PyLint - export | |
run: | | |
pylint --fail-under=6 --load-plugins pylint_django --load-plugins pylint_django.checkers.migrations --django-settings-module=collab_coursebook.settings export | |
- name: Run PyLint - frontend | |
run: | | |
pylint --fail-under=6 --load-plugins pylint_django --load-plugins pylint_django.checkers.migrations --django-settings-module=collab_coursebook.settings frontend | |
- name: Run PyLint - test | |
run: | | |
pylint --fail-under=6 --load-plugins pylint_django --load-plugins pylint_django.checkers.migrations --django-settings-module=collab_coursebook.settings test |