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 178dbc1 commit e4e970aCopy full SHA for e4e970a
.github/workflows/lint.yml
@@ -7,7 +7,7 @@ on:
7
branches:
8
- master
9
jobs:
10
- python_formatting_check:
+ python_linting:
11
runs-on: ubuntu-latest
12
steps:
13
- name: Setup Python
@@ -18,5 +18,7 @@ jobs:
18
uses: actions/checkout@v2
19
- name: Install dev dependencies
20
run: pip install -r requirements/dev_requirements.txt
21
- - name: Check that Python files are formatted correctly
+ - name: Check order of Python imports
22
+ run: isort --check-only --diff --quiet .
23
+ - name: Check formatting of Python files
24
run: black --check --diff .
0 commit comments