File tree Expand file tree Collapse file tree 3 files changed +13
-31
lines changed Expand file tree Collapse file tree 3 files changed +13
-31
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,13 @@ permissions:
16
16
contents : read
17
17
18
18
jobs :
19
- CodeStyle :
20
- uses : ./.github/workflows/reusable_code_style .yml
19
+ CodeCheck :
20
+ uses : ./.github/workflows/reusable_checks .yml
21
21
DocsBuild :
22
22
uses : ./.github/workflows/reusable_docs_build.yml
23
- Spellcheck :
24
- uses : ./.github/workflows/reusable_spellcheck.yml
25
23
FastBuild :
26
24
name : Fast builds
27
- needs : [Spellcheck, CodeStyle ]
25
+ needs : [CodeCheck, DocsBuild ]
28
26
uses : ./.github/workflows/reusable_fast.yml
29
27
Build :
30
28
name : Basic builds
Original file line number Diff line number Diff line change 1
- name : Code Style
1
+ # Basic checks on the code, incl. coding style and spelling.
2
+ # TODO: add license check
3
+ name : Basic checks
2
4
3
5
on : workflow_call
4
6
5
7
permissions :
6
8
contents : read
7
9
8
10
jobs :
9
- CodeStyle :
10
- name : Coding style
11
+ CodeCheck :
12
+ name : Coding style and spell check
11
13
runs-on : ${{ github.repository_owner == 'oneapi-src' && 'intel-ubuntu-22.04' || 'ubuntu-latest' }}
12
14
13
15
steps :
41
43
42
44
- name : Check Python formatting
43
45
run : cmake --build build --target black-format-check
46
+
47
+ - name : Run a spell check
48
+ uses : crate-ci/typos@b63f421581dce830bda2f597a678cb7776b41877 # v1.18.2
49
+ with :
50
+ config : ./.github/workflows/.spellcheck-conf.toml
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments