Skip to content

Commit ddd42e7

Browse files
committed
add action
1 parent 10abc7e commit ddd42e7

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: build
2+
on: push
3+
jobs:
4+
compile-and-test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
# https://github.com/actions/checkout
8+
- name: Download repository
9+
uses: actions/checkout@v3
10+
11+
# https://github.com/actions/setup-java
12+
- name: Set up JDK 14
13+
uses: actions/setup-java@v2
14+
with:
15+
distribution: 'temurin'
16+
java-version: 18
17+
18+
- name: Test with Maven
19+
run: mvn test

0 commit comments

Comments
 (0)