Skip to content

bump grpcVersion from 1.53.0 to 1.57.1 (via #942) #700

bump grpcVersion from 1.53.0 to 1.57.1 (via #942)

bump grpcVersion from 1.53.0 to 1.57.1 (via #942) #700

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
branches:
- '*'
push:
branches:
- 'master'
- 'hotfix-*'
jobs:
build:
name: "Build"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java-version: [ '17.0.x' ]
steps:
- uses: actions/[email protected]
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.java-version }}
- name: Build with Gradle
run: ./gradlew build -x test --scan
- name: Run tests
if: always()
run: ./gradlew --no-build-cache cleanTest test