From 6de1de3d9a3b99d788d819752f85e9c1200f0714 Mon Sep 17 00:00:00 2001 From: addwes7 Date: Tue, 2 Jun 2026 16:12:24 -0400 Subject: [PATCH] Added missing OS to GitHub actions workflow --- .github/workflows/maven.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index cd0e13177..9de1e7945 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -6,12 +6,18 @@ on: pull_request: jobs: build: - runs-on: ubuntu-latest + strategy: + matrix: + os: [ ubuntu-latest, windows-latest, macos-latest ] + runs-on: ${{ matrix.os }} + env: + MAVEN_OPTS: "-DskipTests=true -Dmaven.javadoc.skip=true" steps: - uses: actions/checkout@v1 - name: Set up JDK 1.8 - uses: actions/setup-java@v1 + uses: actions/setup-java@v4 with: - java-version: 1.8 + java-version: 8 + distribution: 'zulu' - name: Build with Maven - run: mvn clean package -DskipTests=true -Dmaven.javadoc.skip=true -B -V + run: mvn clean package -B -V \ No newline at end of file