Skip to content

Commit

Permalink
Check build on JDK 16-ea
Browse files Browse the repository at this point in the history
  • Loading branch information
sormuras committed Nov 25, 2020
1 parent c1dd08d commit 0ee3f7c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,31 @@ jobs:
shell: bash
run: mvn test -B

early_access:
name: 'JDK Early-Access'
continue-on-error: true
runs-on: ubuntu-latest
steps:
- name: 'Check out repository'
uses: actions/checkout@v2
- name: 'Cache local Maven repository'
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: 'Set up JDK ${{ matrix.java }}'
uses: actions/setup-java@v1
with:
java-version: 16-ea
- name: 'Install'
shell: bash
run: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
- name: 'Test'
shell: bash
run: mvn test -B

publish_snapshot:
name: 'Publish snapshot'
needs: test
Expand Down

0 comments on commit 0ee3f7c

Please sign in to comment.