Skip to content

Commit

Permalink
chore(CI): Relax MSRV to 1.56.1
Browse files Browse the repository at this point in the history
- Previously raised to `1.59.0` for CI to pass.
- With an MSRV lock file committed this is no longer necessary.

Signed-off-by: Brennan Kinney <5098581+polarathene@users.noreply.github.com>
  • Loading branch information
polarathene committed Nov 7, 2023
1 parent 95a9aed commit bedfb5d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
rust:
- 1.59.0
- 1.56.1
- stable
- beta
- nightly
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
strategy:
matrix:
rust:
- 1.59.0
- 1.56.1
- stable
- beta
- nightly
Expand All @@ -67,14 +67,14 @@ jobs:
run: cp Cargo.lock.msrv Cargo.lock

- name: Run cargo test
if: matrix.rust != 'nightly' && matrix.rust != '1.59.0'
if: matrix.rust != 'nightly' && matrix.rust != '1.56.1'
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features

- name: Run cargo test (nightly)
if: matrix.rust == '1.59.0'
if: matrix.rust == '1.56.1'
continue-on-error: true
uses: actions-rs/cargo@v1
with:
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.59.0
toolchain: 1.56.1
override: true
components: clippy

Expand All @@ -147,7 +147,7 @@ jobs:
strategy:
matrix:
rust:
- 1.59.0
- 1.56.1
- stable

steps:
Expand Down

0 comments on commit bedfb5d

Please sign in to comment.