Skip to content

remove nonfunctional test for now #533

remove nonfunctional test for now

remove nonfunctional test for now #533

Workflow file for this run

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