Skip to content

ISSUE-70 Send all the failed message to the error reporter topic #103

ISSUE-70 Send all the failed message to the error reporter topic

ISSUE-70 Send all the failed message to the error reporter topic #103

name: Pull Request Build and Test
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11' ]
name: Build for ${{ matrix.Java }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean build