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 @@ -87,11 +87,21 @@ jobs:
87
87
run : cargo nextest run --target ${{matrix.target}} ${{ matrix.features }} --no-fail-fast
88
88
env :
89
89
RUST_BACKTRACE : 1
90
+ - name : cargo nextest cdylib
91
+ if : matrix.os != 'windows-2022'
92
+ working-directory : libz-rs-sys-cdylib
93
+ run : cargo llvm-cov nextest --target ${{matrix.target}} ${{ matrix.features }} --features="gz" --lcov --output-path cdylib.lcov.info --ignore-filename-regex "test-libz|dynamic-libz"
94
+ - name : cargo nextest cdylib
95
+ if : matrix.os == 'windows-2022'
96
+ working-directory : libz-rs-sys-cdylib
97
+ run : cargo nextest run --target ${{matrix.target}} ${{ matrix.features }} --features="gz" --no-fail-fast
90
98
- name : Upload coverage to Codecov
91
99
uses : codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5.4.0
92
100
if : matrix.os != 'windows-2022' && matrix.rust == 'stable'
93
101
with :
94
- files : ./lcov.info
102
+ files : |
103
+ ./lcov.info
104
+ ./cdylib.lcov.info
95
105
fail_ci_if_error : false
96
106
flags : test-${{matrix.target}}
97
107
token : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments