add github msrv check
Rust/spacepackets/pipeline/head This commit looks good Details

This commit is contained in:
Robin Müller 2023-01-11 00:02:37 +01:00
parent 8ffa7efa4d
commit 7c9bdb4512
No known key found for this signature in database
GPG Key ID: BE6480244DFE612C
1 changed files with 15 additions and 0 deletions

View File

@ -20,6 +20,21 @@ jobs:
command: check
args: --release
msrv:
name: Check with MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.60.0
override: true
profile: minimal
- uses: actions-rs/cargo@v1
with:
command: check
args: --release
cross-check:
name: Check Cross
runs-on: ubuntu-latest