Skip to content

Commit

Permalink
Merge pull request #496 from ijackson/release-lockfile-bis
Browse files Browse the repository at this point in the history
[release-0.13.x] fix(CI): Add `Cargo.lock.msrv` for CI tests
  • Loading branch information
polarathene committed Nov 7, 2023
2 parents 069891c + 8952a04 commit 2ded348
Show file tree
Hide file tree
Showing 2 changed files with 2,095 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
minimal: true
override: true

- name: Install Cargo.lock.msrv
run: cp Cargo.lock.msrv Cargo.lock

- name: Run cargo check
if: matrix.rust != 'nightly'
uses: actions-rs/cargo@v1
Expand Down Expand Up @@ -60,6 +63,9 @@ jobs:
minimal: true
override: true

- name: Install Cargo.lock.msrv
run: cp Cargo.lock.msrv Cargo.lock

- name: Run cargo test
if: matrix.rust != 'nightly' && matrix.rust != '1.59.0'
uses: actions-rs/cargo@v1
Expand Down Expand Up @@ -125,6 +131,9 @@ jobs:
override: true
components: clippy

- name: Install Cargo.lock.msrv
run: cp Cargo.lock.msrv Cargo.lock

- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
Expand Down Expand Up @@ -152,6 +161,9 @@ jobs:
minimal: true
override: true

- name: Install Cargo.lock.msrv
run: cp Cargo.lock.msrv Cargo.lock

- name: Run cargo check
uses: actions-rs/cargo@v1
with:
Expand Down
Loading

0 comments on commit 2ded348

Please sign in to comment.