-
-
Notifications
You must be signed in to change notification settings - Fork 0
91 lines (72 loc) · 2.43 KB
/
tests.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
on:
push:
name: Tests
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
fmt:
name: Code formatters
runs-on: ubuntu-latest
steps:
- name: Install Prettier
run: npm install -g prettier
- name: Checkout
uses: actions/checkout@v4
- name: Run cargo fmt
run: cargo fmt --check
- name: Run Prettier
run: prettier --check "**/*.{md,json,prettierrc}"
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Run cargo clippy
run: cargo clippy --locked
tests:
name: cargo test
runs-on: ubuntu-latest
env:
RUSTFLAGS: -C instrument-coverage
RUST_BACKTRACE: 1
LLVM_PROFILE_FILE: default_%m.profraw
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install -y zsh fish tmux
- name: Install coverage tools
run: rustup component add llvm-tools
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Run tests
run: cargo test -- --nocapture
- name: Generate coverage report
run: |
PATH="$(rustc --print=target-libdir)/../bin:$PATH"
BINARIES="$(cargo test --no-run --message-format=json | jq -rj 'select(.profile.test == true) | .filenames[] | "--object " + . + " "')"
ARGS="-instr-profile fixit.profdata $BINARIES --object $PWD/target/debug/fixit"
llvm-profdata merge -sparse default_*.profraw -o fixit.profdata
llvm-cov report --use-color --ignore-filename-regex='/.cargo/registry' $ARGS
llvm-cov export -format=lcov $ARGS -sources src/{,**/}*.rs > fixit.lcov
- name: Upload coverage report
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
audit:
name: Check security advisory database
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Run cargo-audit
run: |
gh release download --repo rustsec/rustsec --pattern 'cargo-audit-x86_64-unknown-linux-musl-*.tgz'
tar -xvzf cargo-audit-x86_64-unknown-linux-musl-*.tgz
cp cargo-audit-x86_64-unknown-linux-musl-*/cargo-audit .
./cargo-audit audit