Skip to content

Update readme to match new requirement filenames #484

Update readme to match new requirement filenames

Update readme to match new requirement filenames #484

Workflow file for this run

name: Linter
on:
push:
paths-ignore:
- 'README.md'
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r app/requirements/local.txt
- name: Analysing the code with pylint
run: |
black --check .
- name: Run unittests
run: |
cd app
python manage.py test
env:
DEBUG: "False"