forked from dtolnay/serde-yaml
-
Notifications
You must be signed in to change notification settings - Fork 7
61 lines (52 loc) · 1.6 KB
/
coverage.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
name: 📶 Coverage
on:
push:
branches:
- master
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
coverage:
name: Code Coverage
runs-on: ubuntu-latest
env:
CARGO_INCREMENTAL: "0"
RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests"
RUSTDOCFLAGS: "-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests"
steps:
# Checkout the repository
- name: Checkout repository
uses: actions/[email protected]
# Setup Rust nightly
- name: Install Rust
uses: actions-rs/[email protected]
id: toolchain
with:
toolchain: nightly
override: true
# Configure cache for Cargo
- name: Cache Cargo registry, index
uses: actions/[email protected]
id: cache-cargo
with:
path: |
~/.cargo/registry
~/.cargo/bin
~/.cargo/git
key: linux-${{ steps.toolchain.outputs.rustc_hash }}-rust-cov-${{ hashFiles('**/Cargo.lock') }}
# Run tests with all features
- name: Test (cargo test)
uses: actions-rs/[email protected]
with:
command: test
args: "--workspace"
# Install grcov
- uses: actions-rs/[email protected]
id: coverage
# Upload to Codecov.io
- name: Upload to Codecov.io
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ${{ steps.coverage.outputs.report }}