File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 53
53
54
54
- name : Run only UNIT tests for Windows
55
55
if : ${{ matrix.os == 'windows-latest' }}
56
- run : cargo test --verbose --workspace --target=x86_64-pc-windows-msvc --exclude tests --all-features --no-fail-fast -- --show-output
56
+ run : |
57
+ cargo test --verbose --workspace --lib --target=x86_64-pc-windows-msvc --all-features --no-fail-fast -- --show-output
58
+ cargo test --verbose --workspace --doc --target=x86_64-pc-windows-msvc --all-features --no-fail-fast -- --show-output
57
59
58
60
- name : Run only UNIT tests for MacOS
59
61
if : ${{ matrix.os == 'MacOS-latest' }}
60
- run : cargo test --verbose --workspace --exclude tests --all-features --no-fail-fast -- --show-output
62
+ run : |
63
+ cargo test --verbose --workspace --lib --all-features --no-fail-fast -- --show-output
64
+ cargo test --verbose --workspace --doc --all-features --no-fail-fast -- --show-output
You can’t perform that action at this time.
0 commit comments