test: add it case for obkv-hbase connector #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build PR | |
on: | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
- '.*' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'zulu' | |
cache: 'maven' | |
- name: Maven Build | |
run: mvn clean verify -DskipTests=true | |
test-flink-connector-oceanbase: | |
name: Test (flink-connector-oceanbase) | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'zulu' | |
cache: 'maven' | |
- name: Maven Test | |
run: mvn verify -pl :flink-connector-oceanbase -am | |
test-flink-connector-obkv-hbase: | |
name: Test (flink-connector-obkv-hbase) | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'zulu' | |
cache: 'maven' | |
- name: Maven Test | |
run: mvn verify -pl :flink-connector-obkv-hbase -am |