docs(readme): Add Maven badge (#30) #72
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: | |
branches: main | |
pull_request: | |
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: 21 | |
check-latest: true | |
- uses: gradle/actions/setup-gradle@v3 | |
- run: ./gradlew compileJava compileTestJava compileTestFixturesJava | |
- run: ./gradlew checkstyleMain checkstyleTest checkstyleTestFixtures | |
- run: ./gradlew sonarlintMain sonarlintTest sonarlintTestFixtures | |
- run: ./gradlew javadoc | |
- run: ./gradlew test | |
- run: ./gradlew build -x check |