修复切换语言时,表头不变化的bug #1197
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: 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 |