Skip to content

Commit 9295cb3

Browse files
committed
fixup! fed6c62
1 parent 22afcfc commit 9295cb3

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/rust-test.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,26 @@ on:
66

77
jobs:
88
lint:
9-
runs-on: ${{ matrix.platform.runner }}
9+
runs-on: '${{ matrix.platform.runner }}'
1010
strategy:
1111
matrix:
1212
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'
1717
steps:
18-
- uses: actions/checkout@v1
19-
- uses: actions-rs/toolchain@v1
18+
- uses: 'actions/checkout@v1'
19+
- uses: 'actions-rs/toolchain@v1'
2020
with:
21-
toolchain: nightly
21+
toolchain: 'nightly'
2222
override: true
23-
- uses: actions-rs/cargo@v1
23+
- uses: 'actions-rs/cargo@v1'
2424
with:
25-
command: test
26-
args: --all-features --no-fail-fast --workspace
25+
command: 'test'
26+
args: '--workspace --no-default-features --features testing-checks'
2727
env:
2828
CARGO_INCREMENTAL: '0'
2929
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cllvm-args=--inline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
3030
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'

0 commit comments

Comments
 (0)