File tree 1 file changed +12
-12
lines changed
1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
lint :
9
- runs-on : ${{ matrix.platform.runner }}
9
+ runs-on : ' ${{ matrix.platform.runner }}'
10
10
strategy :
11
11
matrix :
12
12
platform :
13
- - runner : ubuntu-latest
14
- - runner : macos-12
15
- - runner : macos-14
16
- - runner : windows-latest
13
+ - runner : ' ubuntu-latest'
14
+ - runner : ' macos-12'
15
+ - runner : ' macos-14'
16
+ - runner : ' windows-latest'
17
17
steps :
18
- - uses : actions/checkout@v1
19
- - uses : actions-rs/toolchain@v1
18
+ - uses : ' actions/checkout@v1'
19
+ - uses : ' actions-rs/toolchain@v1'
20
20
with :
21
- toolchain : nightly
21
+ toolchain : ' nightly'
22
22
override : true
23
- - uses : actions-rs/cargo@v1
23
+ - uses : ' actions-rs/cargo@v1'
24
24
with :
25
- command : test
26
- args : --all-features --no-fail-fast --workspace
25
+ command : ' test'
26
+ args : ' --workspace --no-default-features --features testing-checks '
27
27
env :
28
28
CARGO_INCREMENTAL : ' 0'
29
29
RUSTFLAGS : ' -Zprofile -Ccodegen-units=1 -Cllvm-args=--inline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
30
30
RUSTDOCFLAGS : ' -Zprofile -Ccodegen-units=1 -Cllvm-args=--inline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
31
- - uses : actions-rs/grcov@v0.1
31
+ - uses : ' actions-rs/grcov@v0.1'
You can’t perform that action at this time.
0 commit comments