Skip to content

Commit

Permalink
Run CI workflow on Windows and macOS (rojo-rbx#825)
Browse files Browse the repository at this point in the history
This PR adds macOS and Windows jobs to the CI workflow. This allows us
to see when changes break functionality on any supported platform, which
is particularly important for changes that involve the file system or
file watcher.
  • Loading branch information
kennethloeffler authored Dec 30, 2023
1 parent 96987af commit 11fa08e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ on:
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

strategy:
matrix:
rust_version: [stable, 1.70.0]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 11fa08e

Please sign in to comment.