File tree Expand file tree Collapse file tree 2 files changed +55
-0
lines changed Expand file tree Collapse file tree 2 files changed +55
-0
lines changed Original file line number Diff line number Diff line change
1
+ on : [push, pull_request]
2
+
3
+ name : C++
4
+
5
+ jobs :
6
+ pixi-build :
7
+ name : " pixi build"
8
+ runs-on : ubuntu-22.04
9
+ steps :
10
+ - uses : actions/checkout@v4
11
+
12
+ -
uses :
prefix-dev/[email protected]
13
+ with :
14
+ pixi-version : v0.5.0
15
+ cache : true
16
+
17
+ - run : pixi run build
Original file line number Diff line number Diff line change
1
+ name : Check spelling and links
2
+ on : [pull_request]
3
+
4
+ jobs :
5
+ typos :
6
+ # https://github.com/crate-ci/typos
7
+ # Add exceptions to .typos.toml
8
+ # install and run locally: cargo install typos-cli && typos
9
+ name : typos
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - name : Checkout Actions Repository
13
+ uses : actions/checkout@v4
14
+
15
+ - name : Check spelling of entire workspace
16
+ uses : crate-ci/typos@master
17
+
18
+ spellcheck :
19
+ name : Spellcheck
20
+ runs-on : ubuntu-latest
21
+ steps :
22
+ - uses : actions/checkout@v4
23
+ - uses : streetsidesoftware/cspell-action@v2
24
+ with :
25
+ files : " **/*.md"
26
+
27
+ linkinator :
28
+ name : linkinator
29
+ runs-on : ubuntu-latest
30
+ steps :
31
+ - uses : actions/checkout@v4
32
+ - uses : jprochazk/linkinator-action@main
33
+ with :
34
+ linksToSkip : " https://crates.io/crates/.*, http://localhost:.*" # Avoid crates.io rate-limiting
35
+ retry : true
36
+ retryErrors : true
37
+ retryErrorsCount : 5
38
+ retryErrorsJitter : 2000
You can’t perform that action at this time.
0 commit comments