Skip to content

Commit 3d188e0

Browse files
committed
add build check
1 parent 4ce0d15 commit 3d188e0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/build.yml

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

0 commit comments

Comments
 (0)