Skip to content

Commit

Permalink
Run workflow on Windows, macOS and Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahgraham committed May 29, 2023
1 parent c90b165 commit 6228349
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ on: [ pull_request, push]

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

0 comments on commit 6228349

Please sign in to comment.