Skip to content

Update README.md

Update README.md #100

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
fail-fast: false
matrix:
# todo re-add jdk '9' after missing certificate issue on ubuntu is resolved
java: [ '8', '11', '13', '15', '17']
os: [ ubuntu-latest, windows-latest ]
name: Java ${{ matrix.Java }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
- name: Show version
run: mvn -version
- name: Cache Maven packages
uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-m2
restore-keys: ${{ runner.os }}-m2
- name: Test with Maven
run: mvn -B clean package ${{ matrix.jdk }}