Skip to content

Commit 5a4b8bf

Browse files
committed
add github testing CI
1 parent b4351e8 commit 5a4b8bf

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Java CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v3
11+
- name: Set up JDK 11
12+
uses: actions/setup-java@v3
13+
with:
14+
distribution: 'adopt'
15+
java-version: '17'
16+
- name: Build with Maven
17+
run: mvn --batch-mode --update-snapshots package

0 commit comments

Comments
 (0)