We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ee2a59 commit c55f97dCopy full SHA for c55f97d
.github/workflows/ci.yml
@@ -0,0 +1,29 @@
1
+name: CI Build
2
+
3
+on:
4
+ push:
5
+ branches: [ main, 5.0.x, 4.5.x, 'issue/**' ]
6
7
+permissions: read-all
8
9
+jobs:
10
+ build-java:
11
+ strategy:
12
+ matrix:
13
+ java-version: [ base, main ]
14
+ name: Build project
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v6
18
+ - name: Setup Java and Maven
19
+ uses: spring-projects/spring-data-release/actions/setup-maven@main
20
+ with:
21
+ java-version: ${{ matrix.java-version }}
22
+ develocity-access-key: '${{ secrets.DEVELOCITY_ACCESS_KEY }}'
23
+ - name: Build
24
+ run: ./mvnw -B -U clean verify
25
+ - name: Test Summary
26
+ uses: test-summary/action@v2.2
27
28
+ paths: '**/TEST-*.xml'
29
+ if: always()
0 commit comments