chore: Bump msrv to 1.60 (#1171)

This commit is contained in:
tottoto
2022-12-01 11:41:31 -05:00
committed by GitHub
parent 95e8c8bdbb
commit f7499c8a6a
2 changed files with 22 additions and 1 deletions
+21
View File
@@ -1,5 +1,8 @@
name: CI
env:
MSRV: "1.60"
on:
push:
branches:
@@ -45,6 +48,24 @@ jobs:
# - uses: actions/checkout@v1
# - uses: EmbarkStudios/cargo-deny-action@v1
msrv:
name: Check MSRV (${{ env.MSRV }})
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install Rust (${{ env.MSRV }})
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ env.MSRV }}
override: true
- name: Check
uses: actions-rs/cargo@v1
with:
command: check
args: --all --all-targets --all-features
test:
runs-on: ${{ matrix.os }}
strategy: