Skip to content

Commit f39bbd6

Browse files
fix ci build to have covered all member tests
1 parent dd55e98 commit f39bbd6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/local_openssl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ jobs:
3434
with:
3535
toolchain: ${{ matrix.toolchain }}
3636
- name: Test against OpenSSL locally
37-
run: cargo test
37+
run: cargo test --all

.github/workflows/rustls-rustcrypto.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ jobs:
8080
toolchain: ${{ matrix.toolchain }}
8181
- uses: taiki-e/install-action@nextest
8282
- name: Test normal
83-
run: cargo nextest run
83+
run: cargo nextest run --all
8484
- name: Test no_std
85-
run: cargo nextest run --no-default-features --features alloc
85+
run: cargo nextest run --all --no-default-features --features alloc
8686
- name: Test no_std with TLS 1.2
87-
run: cargo nextest run --no-default-features --features alloc,tls12
87+
run: cargo nextest run --all --no-default-features --features alloc,tls12
8888
coverage:
8989
runs-on: ubuntu-latest
9090
steps:
@@ -97,7 +97,7 @@ jobs:
9797
- uses: taiki-e/install-action@cargo-llvm-cov
9898
- uses: taiki-e/install-action@nextest
9999
- name: Collect coverage data
100-
run: cargo llvm-cov nextest
100+
run: cargo llvm-cov nextest --all
101101
cross:
102102
strategy:
103103
matrix:
@@ -118,4 +118,4 @@ jobs:
118118
toolchain: ${{ matrix.rust }}
119119
targets: ${{ matrix.target }}
120120
- uses: taiki-e/install-action@nextest
121-
- run: cargo nextest run --release --target ${{ matrix.target }} --all-features
121+
- run: cargo nextest run --all --release --target ${{ matrix.target }} --all-features

0 commit comments

Comments
 (0)