Skip to content

Commit

Permalink
ci: debug why 1.48 works locally and not in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cardoe committed Feb 13, 2024
1 parent 57bc1d6 commit dad79df
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit dad79df

Please sign in to comment.