From dad79dffbad93c03011d4c7a8eecadd07f662104 Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Tue, 13 Feb 2024 08:14:53 -0600 Subject: [PATCH] ci: debug why 1.48 works locally and not in CI --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aab8ea5..6775189 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,10 +23,12 @@ jobs: - uses: actions/checkout@v4 - name: install Rust run: rustup toolchain install ${{ matrix.rust.version }} --profile minimal --allow-downgrade - - run: mv Cargo.lock.msrv Cargo.lock + - run: cp Cargo.lock.msrv Cargo.lock if: ${{ matrix.rust.version}} == 1.48.0 - name: cargo check/test - run: cargo ${{ matrix.rust.command }} ${{ matrix.rust.args }} + run: | + cargo --version + cargo ${{ matrix.rust.command }} ${{ matrix.rust.args }} test: runs-on: ubuntu-latest