Skip to content

Commit

Permalink
.github/workflows: Run checks on 3 OSes.
Browse files Browse the repository at this point in the history
This fixes #1670.
  • Loading branch information
xiaq committed Dec 16, 2024
1 parent 22d280d commit 22542af
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,12 @@ jobs:

checks:
name: Run checks
runs-on: ubuntu-latest
# Most checks do not rely on the OS, but some (like check-gen) do. To ensure
# maximal coverage, we run all of the checks on the three main OSes.
strategy:
matrix:
os: [ubuntu, macos, windows]
runs-on: ${{ matrix.os }}-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down

0 comments on commit 22542af

Please sign in to comment.