Skip to content

Commit

Permalink
fix MSRV build
Browse files Browse the repository at this point in the history
Signed-off-by: gruebel <[email protected]>
  • Loading branch information
gruebel committed Sep 22, 2024
1 parent 56af10a commit 191806f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ jobs:
run: cp Cargo.lock.msrv Cargo.lock

- name: Build
run: cargo build --verbose
run: |
if [ '${{ matrix.rust }}' == '1.67.1' ]; then
cargo build --locked --verbose
else
cargo build --verbose
fi
- name: Run tests
run: cargo test --verbose
Expand Down

0 comments on commit 191806f

Please sign in to comment.