We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 43cf402 + a8cbdf1 commit 4100ebeCopy full SHA for 4100ebe
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,23 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - 'main'
7
+ pull_request:
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4.2.2
16
17
+ - name: Set up JDK 17
18
+ uses: actions/setup-java@v1
19
+ with:
20
+ java-version: 17
21
22
+ - name: Build with Maven
23
+ run: mvn --batch-mode install
0 commit comments