From 64f1daaa8325ada4dc50dd4aa1f221dd2eb59173 Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Thu, 9 Oct 2025 02:34:29 -0400 Subject: [PATCH] chore: minor CI improvements --- .github/workflows/test.yml | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e6fac0a..b9c1be8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,15 +12,8 @@ jobs: platform: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.platform }} steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - - uses: actions-rs/cargo@v1 - with: - command: check - args: --no-default-features --features=${{ matrix.features }} - - uses: actions-rs/cargo@v1 - with: - command: test - args: --no-default-features --features=${{ matrix.features }} + - uses: actions/checkout@v5 + - uses: dtolnay/rust-toolchain@stable + - run: cargo check --no-default-features --features=${{ matrix.features }} + - run: cargo test --no-default-features --features=${{ matrix.features }} + - run: cargo fmt -- --check