Skip to content

Commit

Permalink
Run CI on macos and windows in addition to linux (#50)
Browse files Browse the repository at this point in the history
Previously, CI only builds and tests on linux. With this
PR, we also test macos and windows.
  • Loading branch information
jlapeyre authored Jan 18, 2024
1 parent c9d9ed9 commit 6daea46
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ env:
jobs:
build:

runs-on: ubuntu-latest

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-11, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Rust Format
Expand Down

0 comments on commit 6daea46

Please sign in to comment.