Skip to content

Commit

Permalink
ant precommit GitHub action for all PRs (#870)
Browse files Browse the repository at this point in the history
This runs with Java11
  • Loading branch information
anshumg committed Sep 10, 2019
1 parent de423ae commit 2843f2f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ant.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Ant precommit (w/ Java11)

on:
pull_request:
branches:
- '*'
jobs:
test:
name: ant precommit w/ Java 11

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Ivy bootstrap
run: ant ivy-bootstrap
- name: Precommit
run: ant precommit

0 comments on commit 2843f2f

Please sign in to comment.