Bump net.ltgt.errorprone from 4.0.1 to 4.1.0 (#227) #191
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: Java CI with Gradle | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
strategy: | |
matrix: | |
jdk: [ 11, 17 ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pull Request Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{github.event.pull_request.head.ref}} | |
repository: ${{github.event.pull_request.head.repo.full_name}} | |
if: github.head_ref != '' | |
- name: Push Checkout | |
uses: actions/checkout@v4 | |
if: github.head_ref == '' | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{matrix.jdk}} | |
- name: Github Environment Setup | |
run: | | |
owner=${{ github.repository_owner }} | |
echo "REPO_SITE=${owner}" >> $GITHUB_ENV | |
- name: Build with Gradle | |
run: ./gradlew build --warning-mode all |