summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2022-12-04 14:32:18 +0100
committerMatthias Beyer <mail@beyermatthias.de>2022-12-04 14:32:18 +0100
commitf6163c04b1e08137ac5fab6d7731953b3d0ae301 (patch)
tree598a90adb510fa518796e988f24399dfe98a5410 /.github
parent46e6afcce72acf473911d8e61dadce8e681d6a2e (diff)
Update MSRV: 1.56.0 -> 1.59.0
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to '.github')
-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 a8a9c74..eb016d2 100644
--- a/.github/workflows/msrv.yml
+++ b/.github/workflows/msrv.yml
@@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
rust:
- - 1.56.0
+ - 1.59.0
- stable
- beta
- nightly
@@ -45,7 +45,7 @@ jobs:
strategy:
matrix:
rust:
- - 1.56.0
+ - 1.59.0
- stable
- beta
- nightly
@@ -61,14 +61,14 @@ jobs:
override: true
- name: Run cargo test
- if: matrix.rust != 'nightly' && matrix.rust != '1.56.0'
+ if: matrix.rust != 'nightly' && matrix.rust != '1.59.0'
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features
- name: Run cargo test (nightly)
- if: matrix.rust == '1.56.0'
+ if: matrix.rust == '1.59.0'
continue-on-error: true
uses: actions-rs/cargo@v1
with:
@@ -121,7 +121,7 @@ jobs:
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
- toolchain: 1.56.1
+ toolchain: 1.59.0
override: true
components: clippy
@@ -138,7 +138,7 @@ jobs:
strategy:
matrix:
rust:
- - 1.56.0
+ - 1.59.0
- stable
steps: