-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (37 loc) · 944 Bytes
/
static.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
name: Static Analysis
on:
push:
branches: [ main ]
paths:
- 'benchplot/**'
- 'examples/**'
pull_request:
branches: [ main ]
paths:
- 'benchplot/**'
- 'examples/**'
workflow_dispatch:
jobs:
lint-and-audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y libfontconfig1-dev
- 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: clippy
run: cargo clippy -- -D warnings
- name: rustfmt
run: cargo fmt -- --check
- name: cargo-audit
run: cargo audit