Skip to content

Commit 0fe28a5

Browse files
committed
~ run mvn verify on PRs
1 parent 33e6800 commit 0fe28a5

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/maven-verify.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Run `maven verify` on JDK 17
2+
3+
on:
4+
pull_request:
5+
branches: [ "dev/1.0" ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- name: Set up JDK 17
14+
uses: actions/setup-java@v4
15+
with:
16+
java-version: '17'
17+
distribution: 'temurin'
18+
cache: maven
19+
20+
- name: Build and Verify with Maven
21+
run: mvn -B verify

0 commit comments

Comments
 (0)