File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI Build
2+
3+ on :
4+ push :
5+ branches : [ main, 4.0.x, 3.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 : Prepare Docker Container Licenses
24+ run : ./ci/accept-third-party-license.sh
25+ - name : Build
26+ run : ./mvnw -Dsort -B -U clean dependency:list verify
27+ - name : Test Summary
28+ uses : test-summary/action@v2.2
29+ with :
30+ paths : ' **/TEST-*.xml'
31+ if : always()
You can’t perform that action at this time.
0 commit comments