Skip to content

Commit 227b51d

Browse files
author
Diptorup Deb
committed
Fixes to job names and typos in comments.
1 parent 6d799cd commit 227b51d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/black.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This is a workflow to format Python code with black formatter
22

3-
name: Code style Python
3+
name: Python Code Style
44

55
# Controls when the action will run. Triggers the workflow on push or pull request
66
# events but only for the master branch
@@ -11,7 +11,7 @@ on:
1111

1212
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1313
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
1515
isort:
1616
runs-on: ubuntu-latest
1717
steps:

.github/workflows/clang-format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This is a workflow to format C/C++ sources with clang-format
22

3-
name: clang-format Check
3+
name: C++ Code Style
44

55
# Controls when the action will run. Triggers the workflow on push or pull request
66
# events but only for the master branch
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
formatting-check:
14-
name: Formatting Check
14+
name: clang-format
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)