From c4f0f9eb15e414ae35323c90c362c1374b90f34e Mon Sep 17 00:00:00 2001 From: Piotr Findeisen Date: Wed, 7 Feb 2024 18:53:36 +0100 Subject: [PATCH] Use better maven goal for CI testing `package` would not run integration tests, should they exist. --- .github/workflows/maven.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml index 1a31a0d..5b51151 100644 --- a/.github/workflows/maven.yaml +++ b/.github/workflows/maven.yaml @@ -24,7 +24,7 @@ jobs: echo "::add-matcher::.github/problem-matcher.json" echo "::remove-matcher owner=java::" - name: Build with Maven - run: mvn -B package + run: mvn -B install - name: Upload test report uses: actions/upload-artifact@v3 if: always()