Skip to content

Update dependency com.google.googlejavaformat:google-java-format to v1.25.0 #621

Update dependency com.google.googlejavaformat:google-java-format to v1.25.0

Update dependency com.google.googlejavaformat:google-java-format to v1.25.0 #621

Workflow file for this run

# Copyright (C) 2021 The Authors of CEL-Java
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: CI
on:
push:
branches: [ main ]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.head_commit.id }}-${{ github.event.pull_request.head.ref }}
cancel-in-progress: true
jobs:
java:
name: CI Java/Gradle
runs-on: ubuntu-latest
strategy:
max-parallel: 3
matrix:
java-version: ['11', '17', '20']
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
submodules: 'true'
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
env:
GRADLE_BUILD_ACTION_CACHE_KEY_ENVIRONMENT: java-${{ matrix.java-version }}
with:
cache-read-only: ${{ github.event_name != 'push' || github.ref != 'refs/heads/main' }}
- name: Build with Gradle
run: ./gradlew build publishToMavenLocal --scan
- name: Capture test results
uses: actions/upload-artifact@v4
if: failure()
with:
name: test-results
path: |
**/build/reports/*
**/build/test-results/*