Merge pull request #64 from amitjoy/feature/63 #526
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Build | |
on: | |
push: | |
branches-ignore: ["release"] | |
pull_request: | |
env: | |
LC_ALL: en_US.UTF-8 | |
GRADLE_OPTS: -Dorg.gradle.parallel=false | |
jobs: | |
build: | |
name: build on OpenJDK Linux | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v1 | |
- name: Gradle Wrapper Validation | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Set up Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Build | |
shell: bash | |
run: ./gradlew build |