We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d77c35f commit e131b53Copy full SHA for e131b53
.github/workflows/code_formatting.yml
@@ -7,7 +7,7 @@ concurrency:
7
cancel-in-progress: true
8
9
jobs:
10
- build:
+ code-formatting:
11
runs-on: ubuntu-22.04
12
steps:
13
- uses: actions/checkout@v3
@@ -18,3 +18,13 @@ jobs:
18
run: source tools/ci.sh && ci_code_formatting_run
19
- name: Check code formatting
20
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