File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 5656 run : cargo build --verbose ${{ join(matrix.features, ' ') }}
5757 - name : Run doctests
5858 run : cargo test --doc --verbose ${{ join(matrix.features, ' ') }}
59+ - name : Run regular tests
60+ run : cargo test --tests --verbose ${{ join(matrix.features, ' ') }}
61+
62+ codecov :
63+ needs :
64+ - lint
65+ runs-on : ubuntu-latest
66+ steps :
67+ - uses : actions/checkout@v4
5968 - uses : dtolnay/rust-toolchain@stable
6069 with :
6170 components : llvm-tools-preview
@@ -64,11 +73,12 @@ jobs:
6473 - name : Install nextest
6574 uses : taiki-e/install-action@nextest
6675 - name : Generate code coverage
67- run : cargo llvm-cov nextest ${{ join(matrix. features, ' ') }} --lcov --output-path lcov.info
76+ run : cargo llvm-cov nextest --all- features --lcov --output-path lcov.info
6877
6978 build-others :
7079 needs :
7180 - build-linux
81+ - codecov
7282 - docs
7383 runs-on : ${{ matrix.os }}
7484 strategy :
You can’t perform that action at this time.
0 commit comments