File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -66,17 +66,24 @@ jobs:
66
66
- uses : actions/checkout@v2
67
67
- uses : actions-rs/toolchain@v1
68
68
with :
69
- toolchain : stable
69
+ toolchain : nightly
70
+ override : true
70
71
- uses : actions/cache@v2
71
72
with :
72
73
path : |
73
74
~/.cargo/registry
74
75
~/.cargo/git
75
76
target
76
77
key : ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
77
- -
uses :
actions-rs/[email protected]
78
+ - uses : actions-rs/cargo@v1
78
79
with :
79
- args : ' -- --test-threads 1'
80
+ command : test
81
+ args : --all-features --no-fail-fast
82
+ env :
83
+ CARGO_INCREMENTAL : ' 0'
84
+ RUSTFLAGS : ' -Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
85
+ RUSTDOCFLAGS : ' -Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
86
+ -
uses :
actions-rs/[email protected]
80
87
- uses : codecov/codecov-action@v1
81
88
with :
82
89
fail_ci_if_error : true
You can’t perform that action at this time.
0 commit comments