Skip to content

Commit

Permalink
ci: check msrv on windows and macos
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Mar 18, 2024
1 parent 54bb709 commit 7986209
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,10 +259,20 @@ jobs:
cargo check --all-features
msrv:
name: MSRV
name: MSRV (${{ matrix.os }})
needs: [style]

runs-on: ubuntu-latest
# Since we have some dependencies specific to different operation systems,
# check the MSRV on each OS.
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macOS-latest


runs-on: ${{ matrix.os }}

steps:
- name: Checkout
Expand Down

0 comments on commit 7986209

Please sign in to comment.