Skip to content

Update GitHub action to reduce CI flakes #122

Update GitHub action to reduce CI flakes

Update GitHub action to reduce CI flakes #122

Workflow file for this run

name: Pull Request Build
# For pull requests: builds and test
on:
push:
branches:
- '!master'
pull_request:
branches:
- master
- 20.x
- 19.x
- 18.x
jobs:
buildAndTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gradle/actions/wrapper-validation@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'corretto'
- name: build and test
run: ./gradlew assemble && ./gradlew check --info --stacktrace