Skip to content

fix github workflow #61

fix github workflow

fix github workflow #61

Workflow file for this run

# test java version of library
name: Test Java
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '17'
- name: Maven compile
run: |
cd java/
mvn clean compile
- name: Build with Maven
run: |
cd java/
mvn test