diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index a950104..8939610 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -11,7 +11,10 @@ on: jobs: build: - runs-on: ["ubuntu-latest", "windows-latest"] + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - name: Set up JDK 21 @@ -21,7 +24,7 @@ jobs: distribution: 'temurin' cache: maven - name: Build with Maven - run: ./mvnw -B verify -Prun-its --file pom.xml + run: ./mvnw -B verify -Pchecks,run-its --file pom.xml # Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive - name: Update dependency graph