We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47e11f4 commit 2685564Copy full SHA for 2685564
.github/actions/rust-build/action.yml
@@ -16,7 +16,7 @@ runs:
16
- uses: Swatinem/rust-cache@v2
17
- name: Build
18
shell: bash
19
- run: cargo build --all-features --verbose
+ run: if [ "${{ inputs.toolchain }}" != stable ]; then rm -fv Cargo.lock; fi && cargo build --all-features --verbose
20
- name: Run tests
21
22
run: cargo test --all-features --verbose
.github/workflows/build.yml
@@ -7,7 +7,7 @@ jobs:
7
strategy:
8
matrix:
9
toolchain:
10
- - "1.71.1" # Current MSRVA
+ - "1.71.1" # Current MSRV
11
- stable
12
env:
13
RUST_BACKTRACE: 1
0 commit comments