Skip to content

Commit 2b4bbb9

Browse files
committed
Add CI Support
1 parent d411586 commit 2b4bbb9

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/maven.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Java CI
2+
3+
on: [push]
4+
5+
defaults:
6+
run:
7+
working-directory: /
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Set up JDK 18 for x64
16+
uses: actions/setup-java@v1
17+
with:
18+
java-version: 18
19+
architecture: x64
20+
- name: Build with Maven
21+
run: mvn --batch-mode --update-snapshots clean package

0 commit comments

Comments
 (0)