Skip to content

Commit e8faf9e

Browse files
Add Workflow for Maven Build
Each PR should be built with `mvn clean verify` to execute the integration tests. This helps PR validation.
1 parent 0eff138 commit e8faf9e

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/maven-verify.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Maven Verify
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Set up JDK 17
12+
uses: actions/setup-java@v4
13+
with:
14+
distribution: 'temurin'
15+
java-version: '17'
16+
- name: Build with Maven
17+
run: mvn clean verify

0 commit comments

Comments
 (0)