We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57bc1d6 commit dad79dfCopy full SHA for dad79df
.github/workflows/ci.yml
@@ -23,10 +23,12 @@ jobs:
23
- uses: actions/checkout@v4
24
- name: install Rust
25
run: rustup toolchain install ${{ matrix.rust.version }} --profile minimal --allow-downgrade
26
- - run: mv Cargo.lock.msrv Cargo.lock
+ - run: cp Cargo.lock.msrv Cargo.lock
27
if: ${{ matrix.rust.version}} == 1.48.0
28
- name: cargo check/test
29
- run: cargo ${{ matrix.rust.command }} ${{ matrix.rust.args }}
+ run: |
30
+ cargo --version
31
+ cargo ${{ matrix.rust.command }} ${{ matrix.rust.args }}
32
33
test:
34
runs-on: ubuntu-latest
0 commit comments