-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (42 loc) · 1.05 KB
/
static_analysis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Static Analysis
on:
push:
branches: [ main ]
paths:
- 'src/**'
- 'tests/**'
- 'Cargo.toml'
pull_request:
branches: [ main ]
paths:
- 'src/**'
- 'tests/**'
- 'Cargo.toml'
jobs:
lint-and-audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust Environment
run: |
# Install rustup
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
. "$HOME/.cargo/env"
# Install Clippy and rustfmt
rustup component add clippy rustfmt
# Install cargo-audit
cargo install cargo-audit
- name: Print versions
run: |
rustup --version
rustc --version
cargo --version
cargo clippy --version
cargo fmt --version
cargo audit --version
- name: Run clippy (lint)
run: cargo clippy -- -D warnings
- name: Check Code Formatting with rustfmt
run: cargo fmt -- --check
- name: Security Audit with cargo-audit
run: cargo audit