-
Notifications
You must be signed in to change notification settings - Fork 22
36 lines (34 loc) · 977 Bytes
/
java.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Java CI
on:
push:
paths:
- '.github/workflows/java.yml'
- 'java/**'
pull_request:
paths:
- '.github/workflows/java.yml'
- 'java/**'
jobs:
ci:
strategy:
matrix:
module:
- name: 'mybatis'
with_oceanbase_container: true
- name: 'mybatis-plus'
with_oceanbase_container: false
- name: 'mysql-connector-java'
with_oceanbase_container: true
- name: 'oceanbase-client'
with_oceanbase_container: true
- name: 'spring-jdbc'
with_oceanbase_container: true
- name: 'springboot'
with_oceanbase_container: true
- name: 'testcontainers-java'
with_oceanbase_container: false
uses: ./.github/workflows/basic-workflow.yml
with:
language: 'java'
module: ${{ matrix.module.name }}
with_oceanbase_container: ${{ matrix.module.with_oceanbase_container }}