-
Notifications
You must be signed in to change notification settings - Fork 4
92 lines (76 loc) · 2.17 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
92
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Run fmt
run: cargo fmt --all -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- run: cargo clippy -- --deny clippy::all
stable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
- run: cargo build --verbose
- run: cargo test --verbose
minimum:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/[email protected]
- run: cargo build --verbose
- run: cargo test --verbose
nightly:
runs-on: ubuntu-latest
env:
CARGO_TARGET_DIR: "./target/coverage"
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@nightly
with:
components: llvm-tools-preview
- name: Build and test
env:
CARGO_INCREMENTAL: "0"
RUSTFLAGS: "-Cinstrument-coverage -Clink-dead-code"
RUSTDOCFLAGS: "-Cinstrument-coverage -Clink-dead-code"
LLVM_PROFILE_FILE: "%p-%m.profraw"
run: |
cargo build --verbose
cargo test --verbose
- name: Install grcov
if: github.repository == 'tgecho/canrun_rs'
run: cargo install grcov
- name: Collect coverage
if: github.repository == 'tgecho/canrun_rs'
run: |
grcov . -s . \
-t cobertura \
--binary-path "$CARGO_TARGET_DIR/debug" \
--llvm --branch --ignore-not-existing \
-o ./coverage.xml \
--excl-line '// *coverage-ignore'
- name: Send to codecov
uses: codecov/codecov-action@v4
if: github.repository == 'tgecho/canrun_rs'
with:
files: ./coverage.xml
fail_ci_if_error: true
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}