1 parent 30244e1 commit c48ce36Copy full SHA for c48ce36
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+
2
+name: Java CI with Maven
3
4
+on:
5
+ push:
6
+ branches: [ "main" ]
7
8
+jobs:
9
+ build:
10
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - name: Set up JDK 17
16
+ uses: actions/setup-java@v4
17
+ with:
18
+ java-version: '17'
19
+ distribution: 'temurin'
20
+ cache: maven
21
+ - name: Build with Maven
22
+ run: mvn package
23
24
0 commit comments