优化order关键字作为字段别名的解析逻辑 #5362 #358
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: | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-excluding-paths | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
java: [ 8, 11, 17, 21 ] | |
fail-fast: false | |
max-parallel: 16 | |
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: Build with Maven if test jdk8 | |
if: ${{ matrix.java == '8' || matrix.java == '11'}} | |
run: ./mvnw -Pgen-javadoc clean package -B | |
- name: Build with Maven if test jdk17 | |
if: ${{ matrix.java == '17' || matrix.java == '21' }} | |
run: ./mvnw -Penable-for-jdk17+,gen-code-cov clean package -B | |
- name: "Codecov if test jdk17" | |
if: ${{ matrix.java == '17' }} | |
uses: codecov/[email protected] | |
with: | |
files: ./core/target/site/jacoco/jacoco.xml,./druid-spring-boot-starter/target/site/jacoco/jacoco.xml,./druid-spring-boot-3-starter/target/site/jacoco/jacoco.xml |