From 7c39a10cf27738de180a5fc65050fe1a50ac1b26 Mon Sep 17 00:00:00 2001 From: masklinn Date: Sat, 7 Dec 2024 12:39:20 +0100 Subject: [PATCH] Add non-required test to bypass the lockfile --- .github/workflows/rust.yml | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 4580418..3589ea5 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -13,10 +13,8 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Format - run: cargo fmt --check - - name: clippy - if: always() + - run: cargo fmt --check + - if: always() run: cargo clippy rust-tests: @@ -26,7 +24,16 @@ jobs: - uses: actions/checkout@v4 with: submodules: true - - name: Check - run: cargo check - - name: Run tests - run: cargo test -r --verbose + - run: cargo check + - run: cargo test -r --verbose + + rust-latest-deps: + runs-on: ubuntu-latest + continue-on-error: true + + steps: + - uses: actions/checkout@v4 + with: + submodules: true + - run: cargo update --verbose + - run: cargo test -r --verbose