diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 83bd9e41ef19..7feb381d467f 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -66,27 +66,6 @@ jobs: uses: ./.github/actions/sanity-check with: token: ${{ secrets.GITHUB_TOKEN }} -# - name: Set up JDK ${{ matrix.java }} -# uses: actions/setup-java@v4 -# with: -# java-version: ${{ matrix.java }} -# distribution: 'adopt' -# - uses: actions/cache@v4 -# with: -# path: ~/.m2/repository -# key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-backend -# restore-keys: ${{ runner.os }}-maven- -# - name: Run Unit tests -# run: ./mvnw clean verify -B -Dmaven.test.skip=false -Dspotless.skip=true -DskipUT=false -# - name: Upload coverage report to codecov -# run: CODECOV_TOKEN="09c2663f-b091-4258-8a47-c981827eb29a" bash <(curl -s https://codecov.io/bash) - - # Set up JDK 17 for SonarCloud. -# - name: Set up JDK 17 -# uses: actions/setup-java@v4 -# with: -# java-version: 17 -# distribution: 'adopt' # Sonar check need to run after jacoco report generated. - name: Run SonarCloud Analysis if: '8' == ${{ matrix.java.version }}