chore: fix workflow and readme branch name #2181
Workflow file for this run
This file contains hidden or 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: Integration Testing | |
| on: | |
| push: | |
| branches: | |
| - 2023.x | |
| - 2025.0.x | |
| pull_request: | |
| branches: | |
| - 2023.x | |
| - 2025.0.x | |
| jobs: | |
| deploy-docker-image: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@v4 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v1 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v1 | |
| integration-testing: | |
| name: Integration Testing | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'adopt' | |
| - name: Dependies Cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven- | |
| - name: Compile & Checkstyle | |
| run: mvn clean compile | |
| - name: install dependencies | |
| run: mvn clean install -U package -pl '!spring-cloud-alibaba-coverage' -DskipTests | |
| - name: Testing | |
| run: ./mvnw verify -B -Dmaven.test.skip=false | |
| # run: mvn clean -Dit.enabled=true test | |