From 182876f50d4c251690118bd206f9780e53c500db Mon Sep 17 00:00:00 2001 From: Carlos Macasaet Date: Sat, 17 Sep 2022 19:58:23 -0700 Subject: [PATCH] Build on multiple operating systems --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f8f105..8916e52 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,10 +8,11 @@ on: jobs: build: - runs-on: ubuntu-latest strategy: matrix: java-version: [ 8, 11, 17 ] + os: [ubuntu-latest, windows-latest, macos-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Set up JDK ${{ matrix.java-version }}