Remove superfluous setup-gradle
option (#289)
#717
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: | |
pull_request: | |
# Trigger on merges to `main` to allow `actions/setup-gradle` runs to write their caches. | |
# https://github.com/gradle/actions/blob/main/docs/setup-gradle.md#using-the-cache-read-only | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gradle/wrapper-validation-action@v3 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- uses: gradle/actions/setup-gradle@v4 | |
- run: ./gradlew check jacocoTestReport | |
- uses: codecov/codecov-action@v4 | |
- run: ./gradlew assembleGitHubPages | |
- run: ./gradlew -PRELEASE_SIGNING_ENABLED=false publishToMavenLocal |