forked from torrust/torrust-index
-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (51 loc) · 1.56 KB
/
coverage.yaml
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
name: Coverage
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
report:
name: Report
runs-on: ubuntu-latest
env:
CARGO_INCREMENTAL: "0"
RUSTFLAGS: "-Z profile -C codegen-units=1 -C inline-threshold=0 -C link-dead-code -C overflow-checks=off -C panic=abort -Z panic_abort_tests"
RUSTDOCFLAGS: "-Z profile -C codegen-units=1 -C inline-threshold=0 -C link-dead-code -C overflow-checks=off -C panic=abort -Z panic_abort_tests"
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v3
- id: setup
name: Setup Toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
components: llvm-tools-preview
- id: cache
name: Enable Workflow Cache
uses: Swatinem/rust-cache@v2
- id: tools
name: Install Tools
uses: taiki-e/install-action@v2
with:
tool: grcov
- id: imdl
name: Install Intermodal
run: cargo install imdl
- id: check
name: Run Build Checks
run: cargo check --workspace --all-targets --all-features
- id: test
name: Run Unit Tests
run: cargo test --workspace --all-targets --all-features
- id: coverage
name: Generate Coverage Report
uses: alekitto/[email protected]
- id: upload
name: Upload Coverage Report
uses: codecov/codecov-action@v3
with:
files: ${{ steps.coverage.outputs.report }}
verbose: true
fail_ci_if_error: true