Skip to content

Commit dd2a590

Browse files
committed
update GitHub Actions to lint all files
1 parent 4c43f51 commit dd2a590

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build-deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ jobs:
4444
run: |
4545
python -m pip install --upgrade pip
4646
pip install -r requirements.txt
47-
pip install black flake8 pytest pytest-html
47+
pip install -r requirements-dev.txt
4848
4949
- name: Check code formatting with Black
50-
run: black --check app/ tests/
50+
run: black --check .
5151

5252
- name: Lint code with Flake8
53-
run: flake8 app/ tests/
53+
run: flake8 .
5454

5555
- name: Run tests
5656
run: |

0 commit comments

Comments
 (0)