From b4eee29207755c4a5c67309c085c21dc0f36848d Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Tue, 12 Mar 2024 15:49:05 +0000 Subject: [PATCH] Check it still builds after cargo-update --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2129edcc..9db4d3e2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -44,9 +44,7 @@ jobs: matrix: os: [macOS-latest, ubuntu-latest, windows-latest] version: [stable, nightly, "1.74"] - runs-on: ${{ matrix.os }} - steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@master @@ -68,6 +66,8 @@ jobs: run: cargo build --all-targets - name: Test run: cargo test --workspace + - run: cargo update + - run: cargo build --all-targets # Install from a checkout of the source, to find broken dependencies etc. # We run this on various versions because some dependencies might have changed