File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# This is a workflow to format Python code with black formatter
2
2
3
- name : Code style Python
3
+ name : Python Code Style
4
4
5
5
# Controls when the action will run. Triggers the workflow on push or pull request
6
6
# events but only for the master branch
11
11
12
12
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
13
13
jobs :
14
- # The isort jon sort all imports in .py, .pyx, .pyd sources
14
+ # The isort job sorts all imports in .py, .pyx, .pxd files
15
15
isort :
16
16
runs-on : ubuntu-latest
17
17
steps :
Original file line number Diff line number Diff line change 1
1
# This is a workflow to format C/C++ sources with clang-format
2
2
3
- name : clang-format Check
3
+ name : C++ Code Style
4
4
5
5
# Controls when the action will run. Triggers the workflow on push or pull request
6
6
# events but only for the master branch
11
11
12
12
jobs :
13
13
formatting-check :
14
- name : Formatting Check
14
+ name : clang-format
15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments