Skip to content

Commit 64f1daa

Browse files
committed
chore: minor CI improvements
1 parent 5ef95f8 commit 64f1daa

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,8 @@ jobs:
1212
platform: [ubuntu-latest, windows-latest, macos-latest]
1313
runs-on: ${{ matrix.platform }}
1414
steps:
15-
- uses: actions/checkout@v2
16-
- uses: actions-rs/toolchain@v1
17-
with:
18-
toolchain: stable
19-
- uses: actions-rs/cargo@v1
20-
with:
21-
command: check
22-
args: --no-default-features --features=${{ matrix.features }}
23-
- uses: actions-rs/cargo@v1
24-
with:
25-
command: test
26-
args: --no-default-features --features=${{ matrix.features }}
15+
- uses: actions/checkout@v5
16+
- uses: dtolnay/rust-toolchain@stable
17+
- run: cargo check --no-default-features --features=${{ matrix.features }}
18+
- run: cargo test --no-default-features --features=${{ matrix.features }}
19+
- run: cargo fmt -- --check

0 commit comments

Comments
 (0)