Skip to content

Commit 3914dee

Browse files
committed
Replace workflows
1 parent ac36d62 commit 3914dee

File tree

8 files changed

+50
-173
lines changed

8 files changed

+50
-173
lines changed

.github/workflows/audit.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/workflows/clippy.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/linux-native.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/linux-riscv.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/macos-native.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/rust-audit.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Rust Vulnerability Audit
2+
3+
on:
4+
push:
5+
paths:
6+
- '**/Cargo.toml'
7+
- '**/Cargo.lock'
8+
schedule:
9+
- cron: '0 0 * * MON'
10+
workflow_dispatch:
11+
12+
jobs:
13+
audit:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: illdefined/rust@main
18+
- run: cargo audit

.github/workflows/rust-check.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Rust Checks
2+
3+
on:
4+
- push
5+
- pull_request
6+
- workflow_dispatch
7+
8+
jobs:
9+
lint:
10+
name: Clippy Lint
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: illdefined/rust@main
15+
- run: cargo clippy --all-targets --all-features
16+
17+
check:
18+
name: Rust Check
19+
strategy:
20+
matrix:
21+
runner:
22+
- ubuntu-latest
23+
- ubuntu-24.04-arm
24+
- macos-15
25+
- windows-2025
26+
27+
runs-on: ${{ matrix.runner }}
28+
steps:
29+
- uses: actions/checkout@v4
30+
- uses: illdefined/rust@main
31+
- run: cargo check
32+
- run: cargo test

.github/workflows/windows-native.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)