Skip to content

Commit 2bc6035

Browse files
Add GH workflow; JDK 11 (#14)
1 parent eed4322 commit 2bc6035

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/mvn-verify.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: mvn-verify
2+
on: [push, pull_request]
3+
4+
jobs:
5+
mvn-verify:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- name: Set up JDK 11
10+
uses: actions/setup-java@v4
11+
with:
12+
java-version: '11'
13+
distribution: 'temurin'
14+
cache: maven
15+
- name: Run the Maven verify phase
16+
run: mvn --batch-mode verify

0 commit comments

Comments
 (0)