We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15859f5 commit 891cee5Copy full SHA for 891cee5
.github/workflows/maven.yml
@@ -26,14 +26,16 @@ jobs:
26
uses: actions/setup-java@v4
27
with:
28
java-version: ${{ matrix.java-version }}
29
- distribution: 'temurin'
+ distribution: "temurin"
30
- name: Cache local Maven repository
31
uses: actions/cache@v4
32
33
path: ~/.m2/repository
34
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
35
restore-keys: |
36
${{ runner.os }}-maven-
37
+ - name: Install dependencies
38
+ run: mvn clean install -DskipTests=true -Dmaven.javadoc.skip=true --batch-mode --show-version --file pom.xml
39
- name: Build with Maven
- run: mvn clean install --batch-mode --show-version --file pom.xml
40
+ run: mvn test --batch-mode --file pom.xml
41
0 commit comments