LUCENE-9146: Create gradle precommit action (#1245)

This commit is contained in:
Anshum Gupta 2020-02-07 15:10:09 -08:00 committed by GitHub
parent 69f26d099e
commit 7c20f6b8c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 0 deletions

23
.github/workflows/gradle-precommit.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: Gradle Precommit
on:
pull_request:
branches:
- '*'
jobs:
test:
name: gradle precommit w/ Java 11
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew precommit