Enhanced Scan Filtering #1644
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: | |
pull_request: | |
# Trigger on merges to `main` to allow `gradle/gradle-build-action` runs to write their caches. | |
# https://github.com/gradle/gradle-build-action#using-the-caches-read-only | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- uses: gradle/actions/setup-gradle@v3 | |
with: | |
validate-wrappers: true | |
- run: ./gradlew assemble | |
- run: ./gradlew check | |
- run: ./gradlew -PRELEASE_SIGNING_ENABLED=false publishToMavenLocal |