-
Notifications
You must be signed in to change notification settings - Fork 11
38 lines (38 loc) · 979 Bytes
/
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
name: Coverage
on:
pull_request:
branches: [main]
push:
branches: [main]
concurrency:
group: coverage-${{ github.ref }}
cancel-in-progress: true
jobs:
coveralls:
name: Coveralls
continue-on-error: true
runs-on: ubuntu-latest
env:
RUST_TEST_THREADS: "1"
steps:
- name: Install rust
uses: dtolnay/rust-toolchain@nightly
with:
components: llvm-tools-preview
- name: Checkout
uses: actions/checkout@v3
- name: Install llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
#- uses: Swatinem/rust-cache@v1
- name: Compute Coverage
env:
RUST_LOG: "debug"
run:
cargo llvm-cov
--all-features --workspace
--lcov --output-path lcov.info
- name: Upload to Coveralls
uses: coverallsapp/github-action@master
with:
path-to-lcov: lcov.info
github-token: ${{ secrets.github_token }}