File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -90,13 +90,15 @@ jobs:
90
90
if : " matrix.build-no-std && !matrix.coverage"
91
91
run : |
92
92
cd lightning
93
- cargo test --verbose --color always --features hashbrown
93
+ cargo test --verbose --color always --no-default-features --features no_std
94
+ # check if there is a conflict between no_std and the default std feature
95
+ cargo test --verbose --color always --features no_std
94
96
cd ..
95
97
- name : Test on no_std bullds Rust ${{ matrix.toolchain }} and full code-linking for coverage generation
96
98
if : " matrix.build-no-std && matrix.coverage"
97
99
run : |
98
100
cd lightning
99
- RUSTFLAGS="-C link-dead-code" cargo test --verbose --color always --features hashbrown
101
+ RUSTFLAGS="-C link-dead-code" cargo test --verbose --color always --no-default- features --features no_std
100
102
cd ..
101
103
- name : Test on Rust ${{ matrix.toolchain }}
102
104
if : " ! matrix.build-net-tokio"
You can’t perform that action at this time.
0 commit comments