-
Notifications
You must be signed in to change notification settings - Fork 206
40 lines (30 loc) · 947 Bytes
/
coverage.yml
File metadata and controls
40 lines (30 loc) · 947 Bytes
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
name: Unit test coverage
on:
push:
branches:
- "release-*"
- "main"
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
components: llvm-tools-preview
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Install cargo-expand
run: cargo install cargo-expand
- name: Generate coverage report
# To test with all features:
# run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
run: cargo llvm-cov --workspace --lcov --output-path lcov.info
env:
RUST_TEST_THREADS: 2
- name: Upload to Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: lcov.info