Skip to content

Commit

Permalink
fix: Run msrvs job on multiple platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzypixelz committed Jun 10, 2024
1 parent 7166bda commit 3061ebe
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,14 @@ jobs:
uses: crate-ci/typos@master

msrvs:
name: MSRV checks
runs-on: ubuntu-latest
name: MSRV checks on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
# NOTE: It is necessary to run the check-msrv action on multiple platforms since a crate's MSRV
# depends on the target it's compiled for.
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
steps:
- name: Clone this repository
uses: actions/checkout@v4
Expand Down

0 comments on commit 3061ebe

Please sign in to comment.