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 10c0fd6 commit adcee58Copy full SHA for adcee58
.github/workflows/black.yml
@@ -1,6 +1,6 @@
1
# This is a workflow to format Python code with black formatter
2
3
-name: black
+name: Code style Python
4
5
# Controls when the action will run. Triggers the workflow on push or pull request
6
# events but only for the master branch
@@ -11,7 +11,14 @@ on:
11
12
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
13
jobs:
14
- # This workflow contains a single job called "black"
+ # The isort jon sort all imports in .py, .pyx, .pyd sources
15
+ isort:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - uses: actions/setup-python@v2
20
+ - uses: jamescurtin/isort-action@master
21
+
22
black:
23
# The type of runner that the job will run on
24
runs-on: ubuntu-latest
0 commit comments