Skip to content

Commit

Permalink
Add github workflow step to verify MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
cole14 committed Oct 12, 2023
1 parent 9cd9866 commit 5fe73b0
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ env:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
Expand All @@ -22,3 +20,14 @@ jobs:
run: cargo test --verbose
- name: Build no_std
run: cargo build --no-default-features

msrv-all:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install MSRV
run: rustup update 1.62.1 && rustup default 1.62.1
- name: Test
run: cargo test --verbose
- name: Build no_std
run: cargo build --no-default-features

0 comments on commit 5fe73b0

Please sign in to comment.