We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a38816 commit 6a4688dCopy full SHA for 6a4688d
.github/workflows/maven.yml
@@ -18,7 +18,7 @@ on:
18
19
jobs:
20
build:
21
- name: Maven test on ${{ matrix.Java }}
+ name: Maven test on Java ${{ matrix.Java }}
22
runs-on: ubuntu-latest
23
env:
24
SEGMENT_DOWNLOAD_TIMEOUT_MINS: '15'
@@ -33,8 +33,12 @@ jobs:
33
java-version: ${{ matrix.java }}
34
distribution: 'adopt'
35
cache: maven
36
- - name: Build with Maven
+ - name: Maven Clean
37
run: mvn -B clean --file pom.xml
38
+ - name: Maven Compile
39
+ run: mvn -B compile --file pom.xml
40
41
+ run: mvn -B test --file pom.xml
42
43
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
44
#- name: Update dependency graph
0 commit comments