feat(compat): Provide JDK11 compatibilty through Multi-Release JAR #29
Workflow file for this run
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: CI | |
on: | |
push: | |
workflow_call: | |
concurrency: | |
group: ci-${{ github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: oracle | |
java-version: 20 | |
check-latest: true | |
cache: gradle | |
- run: ./gradlew compileJava compileTestJava | |
- run: ./gradlew checkstyleMain checkstyleTest | |
- run: ./gradlew sonarlintMain sonarlintTest | |
- run: ./gradlew test | |
- run: ./gradlew build | |
- run: ./gradlew jacocoTestReport --rerun | |
- uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
verbose: true |