We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8c5dd09 + cd5f9e6 commit 61f8cd8Copy full SHA for 61f8cd8
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
1
+name: CI Pipeline
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 code
15
+ uses: actions/checkout@v5
16
17
+ - name: Set up JDK 25
18
+ uses: actions/setup-java@v5.2.0
19
+ with:
20
+ distribution: 'temurin'
21
+ java-version: '25'
22
+ cache: 'maven'
23
24
+ - name: Build and test
25
+ run: ./mvnw clean verify -B
mvnw
100644
100755
0 commit comments