We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecfad9e commit 1b25e47Copy full SHA for 1b25e47
.github/workflows/codecov.yml
@@ -12,12 +12,13 @@ jobs:
12
CARGO_TERM_COLOR: always
13
steps:
14
- uses: actions/checkout@v3
15
- - name: Install Rust
16
- run: rustup update stable
+ # nightly is required for --doctests, see cargo-llvm-cov#2
+ - name: Install Rust (nightly)
17
+ run: rustup update nightly
18
- name: Install cargo-llvm-cov
19
uses: taiki-e/install-action@cargo-llvm-cov
20
- name: Generate code coverage
- run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
21
+ run: cargo +nightly llvm-cov --all-features --workspace --lcov --doctests --output-path lcov.info
22
- name: Upload coverage to Codecov
23
uses: codecov/codecov-action@v3
24
env:
0 commit comments