1 parent 4c43f51 commit dd2a590Copy full SHA for dd2a590
1 file changed
.github/workflows/build-deploy.yml
@@ -44,13 +44,13 @@ jobs:
44
run: |
45
python -m pip install --upgrade pip
46
pip install -r requirements.txt
47
- pip install black flake8 pytest pytest-html
+ pip install -r requirements-dev.txt
48
49
- name: Check code formatting with Black
50
- run: black --check app/ tests/
+ run: black --check .
51
52
- name: Lint code with Flake8
53
- run: flake8 app/ tests/
+ run: flake8 .
54
55
- name: Run tests
56
0 commit comments