We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3176863 commit 0d3df30Copy full SHA for 0d3df30
.github/workflows/build.yaml
@@ -0,0 +1,27 @@
1
+name: CI Build
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
7
+jobs:
8
+ build:
9
+ name: Build project
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
14
+ - name: Check out sources
15
+ uses: actions/checkout@v4
16
17
+ - name: Set up JDK 17
18
+ uses: actions/setup-java@v4
19
+ with:
20
+ distribution: 'temurin'
21
+ java-version: 17
22
+ cache: 'maven'
23
24
+ - name: Build with Maven
25
+ env:
26
+ DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
27
+ run: ./mvnw clean verify -B
0 commit comments