Skip to content

Commit 6a4688d

Browse files
committed
Added tests
1 parent 0a38816 commit 6a4688d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/maven.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818

1919
jobs:
2020
build:
21-
name: Maven test on ${{ matrix.Java }}
21+
name: Maven test on Java ${{ matrix.Java }}
2222
runs-on: ubuntu-latest
2323
env:
2424
SEGMENT_DOWNLOAD_TIMEOUT_MINS: '15'
@@ -33,8 +33,12 @@ jobs:
3333
java-version: ${{ matrix.java }}
3434
distribution: 'adopt'
3535
cache: maven
36-
- name: Build with Maven
36+
- name: Maven Clean
3737
run: mvn -B clean --file pom.xml
38+
- name: Maven Compile
39+
run: mvn -B compile --file pom.xml
40+
- name: Maven Compile
41+
run: mvn -B test --file pom.xml
3842

3943
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
4044
#- name: Update dependency graph

0 commit comments

Comments
 (0)