File tree Expand file tree Collapse file tree 6 files changed +32
-3
lines changed
Expand file tree Collapse file tree 6 files changed +32
-3
lines changed Original file line number Diff line number Diff line change 1+ name : Build
2+
13on :
24 push :
35 pull_request :
46 merge_group :
57 schedule : # Trigger a job on default branch at 4AM PST everyday
68 - cron : " 0 11 * * *"
79
8- name : Build
10+ concurrency :
11+ group : ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }}
12+ cancel-in-progress : ${{ github.ref != 'refs/heads/main' }}
913
1014env :
1115 RUSTFLAGS : >-
Original file line number Diff line number Diff line change 11name : Cargo Audit
2+
23on :
34 push :
45 paths :
910 schedule : # Trigger a job on default branch at 4AM PST everyday
1011 - cron : 0 11 * * *
1112
13+ concurrency :
14+ group : ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }}
15+ cancel-in-progress : ${{ github.ref != 'refs/heads/main' }}
16+
1217jobs :
1318 cargo_audit :
1419 name : Cargo Audit
Original file line number Diff line number Diff line change 11name : Code Formatting Check
2+
23on :
34 push :
45 pull_request :
56 merge_group :
67 schedule : # Trigger a job on default branch at 4AM PST everyday
78 - cron : 0 11 * * *
89
10+ concurrency :
11+ group : ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }}
12+ cancel-in-progress : ${{ github.ref != 'refs/heads/main' }}
13+
914jobs :
1015 cargo-fmt :
1116 name : .rs Formatting Check
Original file line number Diff line number Diff line change 1+ name : Docs
2+
13on :
24 push :
35 pull_request :
46 merge_group :
57 schedule : # Trigger a job on default branch at 4AM PST everyday
68 - cron : " 0 11 * * *"
79
8- name : Docs
10+ concurrency :
11+ group : ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }}
12+ cancel-in-progress : ${{ github.ref != 'refs/heads/main' }}
913
1014env :
1115 RUSTDOCFLAGS : -D warnings
1519 name : Docs
1620 runs-on : windows-2025
1721 strategy :
22+ fail-fast : false # Allow all matrix variants to complete even if some fail
1823 matrix :
1924 wdk :
2025 - 10.0.22621 # NI WDK
Original file line number Diff line number Diff line change 11name : Dependency Review
2+
23on :
34 push :
45 pull_request :
56 merge_group :
67
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }}
10+ cancel-in-progress : ${{ github.ref != 'refs/heads/main' }}
11+
712jobs :
813 dependency-review :
914 name : Github Dependency Review
Original file line number Diff line number Diff line change 1+ name : Lint
2+
13on :
24 push :
35 pull_request :
46 merge_group :
57 schedule : # Trigger a job on default branch at 4AM PST everyday
68 - cron : " 0 11 * * *"
79
8- name : Lint
10+ concurrency :
11+ group : ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }}
12+ cancel-in-progress : ${{ github.ref != 'refs/heads/main' }}
913
1014jobs :
1115 clippy :
1418 permissions :
1519 checks : write
1620 strategy :
21+ fail-fast : false # Allow all matrix variants to complete even if some fail
1722 matrix :
1823 wdk :
1924 - 10.0.22621 # NI WDK
You can’t perform that action at this time.
0 commit comments