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 @@ -15,15 +15,13 @@ permissions:
15
15
contents : read
16
16
17
17
jobs :
18
- CodeStyle :
19
- uses : ./.github/workflows/reusable_code_style .yml
18
+ CodeCheck :
19
+ uses : ./.github/workflows/reusable_checks .yml
20
20
DocsBuild :
21
21
uses : ./.github/workflows/reusable_docs_build.yml
22
- Spellcheck :
23
- uses : ./.github/workflows/reusable_spellcheck.yml
24
22
FastBuild :
25
23
name : Fast builds
26
- needs : [Spellcheck, CodeStyle ]
24
+ needs : [CodeCheck, DocsBuild ]
27
25
uses : ./.github/workflows/reusable_fast.yml
28
26
Build :
29
27
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