Skip to content

Commit 8eeb3be

Browse files
committed
Setup GitHub Actions
1 parent 4f19a03 commit 8eeb3be

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
timeout-minutes: 30
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Set up JDK
12+
uses: actions/setup-java@v4
13+
with:
14+
java-version: '17'
15+
distribution: temurin
16+
- name: Build
17+
run: mvn -B verify

0 commit comments

Comments
 (0)