-
Notifications
You must be signed in to change notification settings - Fork 0
81 lines (77 loc) · 1.98 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
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
name: Test
on: [push, pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup toolchain
uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
- name: Run pre-commit
uses: pre-commit/[email protected]
with:
extra_args: --all-files
env:
SKIP: cargo-test
- name: Run cargo-deny
uses: EmbarkStudios/cargo-deny-action@v1
test:
name: Build & Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: [stable, 1.65.0]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup toolchain
uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
- name: Run cargo build
run: cargo build
env:
RUSTFLAGS: -D warnings
- name: Run cargo test
run: cargo test
coverage:
name: Test coverage
runs-on: ubuntu-latest
needs: [lint, test]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup toolchain
uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
components: llvm-tools
- name: Setup grcov
run: cargo install grcov
- name: Run cargo test
run: cargo test --lib
env:
RUSTFLAGS: -Cinstrument-coverage
LLVM_PROFILE_FILE: keyset-rs-%p-%m.profraw
- name: Run grcov
run: >-
grcov .
--source-dir .
--binary-path ./target/debug/
--output-type lcov
--branch
--llvm
--ignore-not-existing
--output-path ./lcov.info
--ignore '/*'
--excl-line '(^\s*#\[derive\([\w, ]*\)\]|unreachable!\(\))'
- name: Upload to codecov.io
uses: codecov/codecov-action@v3
with:
file: lcov.info