Skip to content

Commit 133032f

Browse files
committed
Add GitHub CI action.
1 parent dc10e4e commit 133032f

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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: Build
24+
run: ./mvnw -Dsort -B -U -Pall-dbs clean dependency:list verify
25+
- name: Test Summary
26+
uses: test-summary/[email protected]
27+
with:
28+
paths: '**/TEST-*.xml'
29+
if: always()

0 commit comments

Comments
 (0)