Skip to content

Commit

Permalink
Gradle check w/ Java 8, 11
Browse files Browse the repository at this point in the history
  • Loading branch information
ultraq committed Oct 31, 2019
1 parent 2af1aae commit d7696dc
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/gradle-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Gradle Check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- run: ./gradlew build

0 comments on commit d7696dc

Please sign in to comment.