mirror of https://github.com/apache/lucene.git
LUCENE-9146: Create gradle precommit action (#1245)
This commit is contained in:
parent
69f26d099e
commit
7c20f6b8c5
|
@ -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
|
Loading…
Reference in New Issue