Skip to content

Commit 83fd6a5

Browse files
committed
Fix Maven phase in build-and-test workflow
1 parent 830df44 commit 83fd6a5

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/java-ea-maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141

4242
- name: Build and (headless) test with Maven (Linux)
4343
if: ${{ runner.os == 'Linux' }}
44-
run: xvfb-run mvn verify
44+
run: xvfb-run mvn install
4545

4646
- name: Build and (headless) test with Maven (Windows and macOS)
4747
if: ${{ runner.os != 'Linux' }}
48-
run: mvn verify
48+
run: mvn install

.github/workflows/java8-maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ jobs:
4040

4141
- name: Build and (headless) test with Maven (Linux)
4242
if: ${{ runner.os == 'Linux' }}
43-
run: xvfb-run mvn -U verify
43+
run: xvfb-run mvn -U install
4444

4545
- name: Build and (headless) test with Maven (Windows and macOS)
4646
if: ${{ runner.os != 'Linux' }}
47-
run: mvn -U verify
47+
run: mvn -U install
4848

4949
auto-merge-job:
5050
needs: build-and-test-job

0 commit comments

Comments
 (0)