Skip to content

add testcase to help reproduce https://github.com/globalbioticinterac… #108

add testcase to help reproduce https://github.com/globalbioticinterac…

add testcase to help reproduce https://github.com/globalbioticinterac… #108

Workflow file for this run

name: Java CI
on: [push]
jobs:
build-java8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
cache: maven
- name: Test with Maven
run: mvn test
build-java11:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
cache: maven
- name: Test with Maven
run: mvn test