File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 22
22
- uses : actions/checkout@v4
23
23
- uses : dtolnay/rust-toolchain@stable
24
24
# NB: we have to use either std or alloc here
25
- - run : cargo check --no-default-features --feature std
26
- - run : cargo check --no-default-features --feature alloc
25
+ - run : cargo check --no-default-features --features std
26
+ - run : cargo check --no-default-features --features alloc
27
27
features :
28
28
runs-on : ubuntu-latest
29
29
strategy :
Original file line number Diff line number Diff line change 21
21
- uses : taiki-e/install-action@nextest
22
22
- name : Collect coverage data (including doctests)
23
23
run : |
24
- cargo +nightly llvm-cov --no-report nextest
25
- cargo +nightly llvm-cov --no-report --doc
24
+ cargo +nightly llvm-cov --no-report nextest --workspace --all-features
25
+ cargo +nightly llvm-cov --no-report --doc --workspace --all-features
26
26
cargo +nightly llvm-cov report --doctests --lcov --output-path lcov.info
27
27
- name : Upload coverage data to codecov
28
28
uses : codecov/codecov-action@v4
You can’t perform that action at this time.
0 commit comments