Skip to content

Commit

Permalink
Added github action to build on each push
Browse files Browse the repository at this point in the history
First try without workaround for openjdk7
  • Loading branch information
HanSolo authored and nhojpatrick committed Oct 24, 2020
1 parent adb5235 commit 8522353
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: Java CI

on: [push]

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04]
java: [7, 8, 9, 11, 14, 15]
fail-fast: false
max-parallel: 4
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}

steps:
- uses: actions/checkout@v1
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Gradle
run: ./gradlew clean build javadoc

...

0 comments on commit 8522353

Please sign in to comment.