File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ branches : [ "main" ]
8+ workflow_dispatch :
9+
10+ jobs :
11+ build-with-various-java-versions :
12+ strategy :
13+ matrix :
14+ version : [8, 11, 17, 21]
15+ project :
16+ - ' microservice-transaction-sample'
17+ - ' multi-storage-transaction-sample'
18+ - ' scalardb-kotlin-sample'
19+ - ' scalardb-sample'
20+ - ' scalardb-sql-jdbc-sample'
21+ - ' spring-data-microservice-transaction-sample'
22+ - ' spring-data-multi-storage-transaction-sample'
23+ - ' spring-data-sample'
24+ runs-on : ubuntu-latest
25+ permissions :
26+ contents : read
27+
28+ steps :
29+ - uses : actions/checkout@v4
30+ - name : Set up JDK ${{ matrix.version }}
31+ uses : actions/setup-java@v4
32+ with :
33+ java-version : ${{ matrix.version }}
34+ distribution : ' temurin'
35+
36+ - name : Setup Gradle
37+ uses : gradle/actions/setup-gradle@v4
38+
39+ - name : Build with Gradle Wrapper
40+ working-directory : ${{ matrix.project }}
41+ run : ./gradlew build
You can’t perform that action at this time.
0 commit comments