From 6228349f9745e2020910916566110de003ea8a25 Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Mon, 29 May 2023 14:08:07 -0400 Subject: [PATCH] Run workflow on Windows, macOS and Linux --- .github/workflows/validate.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 9ed9a80f1..507165462 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -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 ☕