-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (41 loc) · 1.37 KB
/
test.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
name: Tests & Build
on: [push, pull_request]
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: sudo apt-get update && sudo apt-get install -y libudev-dev
- run: cargo test
working-directory: bestool
audit:
name: cargo audits
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy,rustfmt
- run: sudo apt-get update && sudo apt-get install -y libudev-dev
- run: cargo install cargo-audit
working-directory: bestool
- run: cargo clippy -- -D warnings --no-deps
working-directory: bestool
# Ignoring mach being unmaintained for now as limited options + its only for MacOS
- run: cargo audit -D unsound -D yanked -D unmaintained --ignore "RUSTSEC-2020-0168"
working-directory: bestool
- run: cargo install --locked cargo-vet
working-directory: bestool
- run: cargo vet --locked
working-directory: bestool
build:
name: cargo build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: sudo apt-get update && sudo apt-get install -y libudev-dev
- run: cargo build
working-directory: bestool