taojintianxia commented on code in PR #32396: URL: https://github.com/apache/shardingsphere/pull/32396#discussion_r1704218437
########## .github/workflows/jacoco.yml: ########## @@ -0,0 +1,51 @@ +name: Coverage + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout branch + uses: actions/checkout@v4 + with: + persist-credentials: false + + - name: Set up JDK 11 for Autogen + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: 11 + cache: 'maven' Review Comment: no need to use `cache: 'maven'` because you use cache@v4 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
