Skip to content

Commit dad79df

Browse files
committed
ci: debug why 1.48 works locally and not in CI
1 parent 57bc1d6 commit dad79df

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,12 @@ jobs:
2323
- uses: actions/checkout@v4
2424
- name: install Rust
2525
run: rustup toolchain install ${{ matrix.rust.version }} --profile minimal --allow-downgrade
26-
- run: mv Cargo.lock.msrv Cargo.lock
26+
- run: cp Cargo.lock.msrv Cargo.lock
2727
if: ${{ matrix.rust.version}} == 1.48.0
2828
- name: cargo check/test
29-
run: cargo ${{ matrix.rust.command }} ${{ matrix.rust.args }}
29+
run: |
30+
cargo --version
31+
cargo ${{ matrix.rust.command }} ${{ matrix.rust.args }}
3032
3133
test:
3234
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)