File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 34
34
with :
35
35
toolchain : ${{ matrix.toolchain }}
36
36
- name : Test against OpenSSL locally
37
- run : cargo test
37
+ run : cargo test --all
Original file line number Diff line number Diff line change @@ -80,11 +80,11 @@ jobs:
80
80
toolchain : ${{ matrix.toolchain }}
81
81
- uses : taiki-e/install-action@nextest
82
82
- name : Test normal
83
- run : cargo nextest run
83
+ run : cargo nextest run --all
84
84
- 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
86
86
- 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
88
88
coverage :
89
89
runs-on : ubuntu-latest
90
90
steps :
97
97
- uses : taiki-e/install-action@cargo-llvm-cov
98
98
- uses : taiki-e/install-action@nextest
99
99
- name : Collect coverage data
100
- run : cargo llvm-cov nextest
100
+ run : cargo llvm-cov nextest --all
101
101
cross :
102
102
strategy :
103
103
matrix :
@@ -118,4 +118,4 @@ jobs:
118
118
toolchain : ${{ matrix.rust }}
119
119
targets : ${{ matrix.target }}
120
120
- 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
You can’t perform that action at this time.
0 commit comments