[Crate] Update Github workflow to confirm MSRV

This commit is contained in:
CosminPerRam 2023-06-06 23:31:19 +03:00
parent c73334f45d
commit 4a8ad7c3dc

View file

@ -15,7 +15,15 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build
- name: Run Check
run: cargo check --verbose
- name: Run Build
run: cargo build --verbose
- name: Run tests
- name: Run Tests
run: cargo test --verbose
- name: Install MSRV
with:
toolchain: 1.60.0
override: true
- name: Run MSRV
run: cargo build