-
Notifications
You must be signed in to change notification settings - Fork 22
36 lines (35 loc) · 899 Bytes
/
ci.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: CI
on:
push:
paths-ignore:
- 'docs/**'
- '**.md'
- '.*'
pull_request:
paths-ignore:
- 'docs/**'
- '**.md'
- '.*'
jobs:
basic:
strategy:
matrix:
module:
- name: 'go-sql-driver'
language: 'golang'
- name: 'mysql-connector-java'
language: 'java'
- name: 'oceanbase-client'
language: 'java'
- name: 'testcontainers-java'
language: 'java'
with_oceanbase_container: false
- name: 'pymysql'
language: 'python'
- name: 'mysql-connector-python'
language: 'python'
uses: ./.github/workflows/basic-ci.yml
with:
module: ${{ matrix.module.name }}
language: ${{ matrix.module.language }}
with_oceanbase_container: ${{ matrix.module.with_oceanbase_container || true }}