summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpolarathene <5098581+polarathene@users.noreply.github.com>2023-11-07 21:01:32 +1300
committerpolarathene <5098581+polarathene@users.noreply.github.com>2023-11-07 21:01:46 +1300
commitbedfb5da6c24449fc68c5cdc638ad07946394da5 (patch)
treeb2c0c2098d75837767c85109d157167ad85d7b41
parent95a9aed0a504fbfe6b9fac316490eb1ab2cbcf57 (diff)
chore(CI): Relax MSRV to `1.56.1`
- 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>
-rw-r--r--.github/workflows/msrv.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml
index 7c78b8e..519f59e 100644
--- a/.github/workflows/msrv.yml
+++ b/.github/workflows/msrv.yml
@@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
rust:
- - 1.59.0
+ - 1.56.1
- stable
- beta
- nightly
@@ -48,7 +48,7 @@ jobs:
strategy:
matrix:
rust:
- - 1.59.0
+ - 1.56.1
- stable
- beta
- nightly
@@ -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:
@@ -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
@@ -147,7 +147,7 @@ jobs:
strategy:
matrix:
rust:
- - 1.59.0
+ - 1.56.1
- stable
steps: