Skip to content

Commit 1addd37

Browse files
DEV: modifies CI to execute flake8 on PR updates
1 parent 0077faa commit 1addd37

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/linters.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,16 @@ jobs:
2828
python -m pip install --upgrade pip
2929
pip install .[all]
3030
pip install .[tests]
31-
pip install pylint isort
31+
pip install pylint isort flake8 black
3232
- name: Run isort
3333
run: isort --check-only rocketpy/ tests/ docs/ --profile black
3434
- name: Run black
3535
uses: psf/black@stable
3636
with:
3737
options: "--check rocketpy/ tests/ docs/"
3838
jupyter: true
39+
- name: Run flake8
40+
run: flake8 rocketpy/ tests/
3941
- name: Run pylint
4042
run: |
4143
pylint rocketpy/

0 commit comments

Comments
 (0)