Skip to content

Added NanoSolveIT in the Acks #13

Added NanoSolveIT in the Acks

Added NanoSolveIT in the Acks #13

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 19 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn clean test -q