Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: Build

on:
push:
pull_request:
merge_group:
schedule: # Trigger a job on default branch at 4AM PST everyday
- cron: "0 11 * * *"

name: Build
concurrency:
group: ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

env:
RUSTFLAGS: >-
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cargo-audit.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Cargo Audit

on:
push:
paths:
Expand All @@ -9,6 +10,10 @@ on:
schedule: # Trigger a job on default branch at 4AM PST everyday
- cron: 0 11 * * *

concurrency:
group: ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
cargo_audit:
name: Cargo Audit
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/code-formatting-check.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
name: Code Formatting Check

on:
push:
pull_request:
merge_group:
schedule: # Trigger a job on default branch at 4AM PST everyday
- cron: 0 11 * * *

concurrency:
group: ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
cargo-fmt:
name: .rs Formatting Check
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: Docs

on:
push:
pull_request:
merge_group:
schedule: # Trigger a job on default branch at 4AM PST everyday
- cron: "0 11 * * *"

name: Docs
concurrency:
group: ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

env:
RUSTDOCFLAGS: -D warnings
Expand All @@ -15,6 +19,7 @@ jobs:
name: Docs
runs-on: windows-2025
strategy:
fail-fast: false # Allow all matrix variants to complete even if some fail
matrix:
wdk:
- 10.0.22621 # NI WDK
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/github-dependency-review.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
name: Dependency Review

on:
push:
pull_request:
merge_group:

concurrency:
group: ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
dependency-review:
name: Github Dependency Review
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: Lint

on:
push:
pull_request:
merge_group:
schedule: # Trigger a job on default branch at 4AM PST everyday
- cron: "0 11 * * *"

name: Lint
concurrency:
group: ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
clippy:
Expand All @@ -14,6 +18,7 @@ jobs:
permissions:
checks: write
strategy:
fail-fast: false # Allow all matrix variants to complete even if some fail
matrix:
wdk:
- 10.0.22621 # NI WDK
Expand Down
Loading