From be05c3262decd0cd64f38d6bd41d31d523d606d6 Mon Sep 17 00:00:00 2001 From: Leon Linhart Date: Mon, 30 Dec 2024 20:21:15 +0100 Subject: [PATCH] build: run CI checks on MacOS --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ef02ca0..6befa1d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -44,9 +44,10 @@ jobs: name: Check strategy: matrix: - jdk: [ 8, 11, 17, 21, 23 ] + jdk: [ 8, 11, 17, 21, 23] + os: [ macos-latest, ubuntu-latest, windows-latest ] needs: build - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} steps: - name: Checkout uses: actions/download-artifact@v4 @@ -59,7 +60,6 @@ jobs: tar -xvf ${{ env.WORKSPACE_ARCHIVE }} rm ${{ env.WORKSPACE_ARCHIVE }} - - name: Setup Java uses: actions/setup-java@v4 with: