@@ -133,15 +133,15 @@ jobs:
133
133
- name : Run cargo check
134
134
run : cargo check --all-targets
135
135
- name : Run the tests
136
- run : cargo test --all-targets
136
+ run : cargo test
137
137
- name : Run the tests with x509-parser enabled
138
- run : cargo test --verbose --features x509-parser --all-targets
138
+ run : cargo test --verbose --features x509-parser
139
139
- name : Run the tests with aws_lc_rs backend enabled
140
- run : cargo test --verbose --no-default-features --features aws_lc_rs,pem --all-targets
140
+ run : cargo test --verbose --no-default-features --features aws_lc_rs,pem
141
141
- name : Run the tests with FIPS aws_lc_rs module
142
- run : cargo test --verbose --no-default-features --features fips,pem --all-targets
142
+ run : cargo test --verbose --no-default-features --features fips,pem
143
143
- name : Run the tests with no features enabled
144
- run : cargo test --verbose --no-default-features --all-targets
144
+ run : cargo test --verbose --no-default-features
145
145
146
146
build :
147
147
strategy :
@@ -176,13 +176,13 @@ jobs:
176
176
- name : Run cargo check
177
177
run : cargo check --all-targets
178
178
- name : Run the tests
179
- run : cargo test --all-targets
179
+ run : cargo test
180
180
- name : Run the tests with x509-parser enabled
181
- run : cargo test --verbose --features x509-parser --all-targets
181
+ run : cargo test --verbose --features x509-parser
182
182
- name : Run the tests with aws_lc_rs backend enabled
183
- run : cargo test --verbose --no-default-features --features aws_lc_rs,pem --all-targets
183
+ run : cargo test --verbose --no-default-features --features aws_lc_rs,pem
184
184
- name : Run the tests with FIPS aws_lc_rs module
185
- run : cargo test --verbose --no-default-features --features fips,pem --all-targets
185
+ run : cargo test --verbose --no-default-features --features fips,pem
186
186
187
187
# Build rustls-cert-gen as a standalone package, see this PR for why it's needed:
188
188
# https://github.com/rustls/rcgen/pull/206#pullrequestreview-1816197358
0 commit comments