From 7168078de1013b865f9ab5a3c2704841f8bbbc24 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 6 Aug 2024 05:30:13 +1000 Subject: [PATCH] CI: Run MSRV job with both lock files Currently we are not running the MSRV job with both lock files, we should. Note also that the lock files are different, testing older versions of `hashes` and `internals` - this is because of the range dependency in `secp` (I think). --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 78ae54b62..87b93f058 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -53,13 +53,13 @@ jobs: - name: "Run test script" run: ./maintainer-tools/ci/run_task.sh nightly - MSRV: # 1 jobs, minimal lock file only. + MSRV: # 2 jobs, one for each lock file. name: Test - 1.63.0 toolchain runs-on: ubuntu-latest strategy: fail-fast: false matrix: - dep: [minimal] + dep: [minimal, recent] steps: - name: "Checkout repo" uses: actions/checkout@v4