We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0077faa commit 1addd37Copy full SHA for 1addd37
.github/workflows/linters.yml
@@ -28,14 +28,16 @@ jobs:
28
python -m pip install --upgrade pip
29
pip install .[all]
30
pip install .[tests]
31
- pip install pylint isort
+ pip install pylint isort flake8 black
32
- name: Run isort
33
run: isort --check-only rocketpy/ tests/ docs/ --profile black
34
- name: Run black
35
uses: psf/black@stable
36
with:
37
options: "--check rocketpy/ tests/ docs/"
38
jupyter: true
39
+ - name: Run flake8
40
+ run: flake8 rocketpy/ tests/
41
- name: Run pylint
42
run: |
43
pylint rocketpy/
0 commit comments