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 f5b1ec7 commit e1f99b7Copy full SHA for e1f99b7
.github/workflows/codecov.yml
@@ -14,7 +14,11 @@ jobs:
14
- uses: actions/checkout@v4
15
- uses: dtolnay/rust-toolchain@stable
16
- uses: taiki-e/install-action@cargo-llvm-cov
17
- - run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
+ - shell: bash
18
+ run: |
19
+ LLVMCOV_FEATURES=$(cargo metadata --format-version 1 --no-deps \
20
+ | jq -r '[ .packages[].features | keys[] | select(. != "default" and . != "aws-lc-rs-fips") ] | unique | join(",")')
21
+ cargo llvm-cov --features="$LLVMCOV_FEATURES" --workspace --lcov --output-path lcov.info
22
- name: Upload coverage to Codecov
23
uses: codecov/codecov-action@v5
24
with:
0 commit comments