From 65903477ba2aea7918b0ac24632a779aad980e48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johanna=20S=C3=B6rng=C3=A5rd?= <44257381+JSorngard@users.noreply.github.com> Date: Mon, 3 Feb 2025 16:02:33 +0100 Subject: [PATCH] Speed up semver-checks CI job --- .github/workflows/rust.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 193bd1c..0a8dfac 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -117,8 +117,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Check semver - uses: obi1kenobi/cargo-semver-checks-action@v2 + - uses: dtolnay/rust-toolchain@stable + - uses: taiki-e/install-action@v2 + with: + tool: cargo-semver-checks + - name: Verify semver compatibility + run: cargo semver-checks beta_test_codec: runs-on: ubuntu-latest @@ -151,4 +155,4 @@ jobs: with: tool: cargo-all-features - name: Test the macro crate on rust beta - run: cargo test-all-features --n-chunks 3 --chunk 3 \ No newline at end of file + run: cargo test-all-features --n-chunks 3 --chunk 3