Skip to content

Commit e131b53

Browse files
committed
github/workflows: Add spell check to code formatting workflow.
Signed-off-by: Damien George <[email protected]>
1 parent d77c35f commit e131b53

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/code_formatting.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ concurrency:
77
cancel-in-progress: true
88

99
jobs:
10-
build:
10+
code-formatting:
1111
runs-on: ubuntu-22.04
1212
steps:
1313
- uses: actions/checkout@v3
@@ -18,3 +18,13 @@ jobs:
1818
run: source tools/ci.sh && ci_code_formatting_run
1919
- name: Check code formatting
2020
run: git diff --exit-code
21+
22+
code-spelling:
23+
runs-on: ubuntu-latest
24+
steps:
25+
- uses: actions/checkout@v3
26+
- uses: actions/setup-python@v4
27+
- name: Install packages
28+
run: source tools/ci.sh && ci_code_spell_setup
29+
- name: Run spell checker
30+
run: source tools/ci.sh && ci_code_spell_run

0 commit comments

Comments
 (0)