Skip to content

Update dependency io.grpc:grpc-api to v1.79.0 #72

Update dependency io.grpc:grpc-api to v1.79.0

Update dependency io.grpc:grpc-api to v1.79.0 #72

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Build & test
on:
pull_request:
push:
branches: [ main, release/* ]
jobs:
linux:
name: Linux
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
- name: Set up JDK
uses: actions/setup-java@v5
with:
java-version: 21
distribution: 'temurin'
- uses: burrunan/gradle-cache-action@663fbad34e03c8f12b27f4999ac46e3d90f87eca # v3.0
name: Build with Gradle
with:
arguments: build
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v7
with:
name: Test Results Linux
path: '**/test-results/**/*.xml'