Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Update README_CN.md #1752

Update README_CN.md

Update README_CN.md #1752

Workflow file for this run

name: Java CI
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@main
- name: Install Java and Maven
uses: actions/setup-java@main
with:
java-version: '17'
distribution: 'adopt'
cache: 'maven'
# 安装各种数据库 用于测试
- name: Docker Compose Action
uses: isbang/[email protected]
with:
compose-file: "./docker/test/docker-compose.yml"
- name: Test with Maven
run: mvn test -B -Dmaven.test.skip=false -pl ali-dbhub-server-test -am -f ali-dbhub-server/pom.xml