From d038950a5d41095cdb05d5807501db825b74383d Mon Sep 17 00:00:00 2001 From: TheBusyBiscuit Date: Tue, 3 Nov 2020 00:53:17 +0100 Subject: [PATCH] [Ci skip] Test --- .github/workflows/maven-compiler.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/maven-compiler.yml b/.github/workflows/maven-compiler.yml index 9b02b166c..3e5a547da 100644 --- a/.github/workflows/maven-compiler.yml +++ b/.github/workflows/maven-compiler.yml @@ -4,9 +4,6 @@ on: push: branches: - master - paths: - - 'src/**' - - 'pom.xml' pull_request: branches: - master @@ -19,6 +16,9 @@ jobs: name: Maven build runs-on: ubuntu-latest + strategy: + matrix: + spigot: ["1.14.4", "1.15.2", "1.16.4"] steps: - name: Checkout repository @@ -28,4 +28,4 @@ jobs: with: java-version: 1.8 - name: Build with Maven - run: mvn package --file pom.xml + run: mvn package --file pom.xml -Dspigot.version=${{ matrix.spigot }}