Skip to content

Provide an example implementation of AbstractElbowLineConnectionWithM… #198

Provide an example implementation of AbstractElbowLineConnectionWithM…

Provide an example implementation of AbstractElbowLineConnectionWithM… #198

Workflow file for this run

name: Run JUnit tests
on: [ push ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest ]
java: [ 21 ]
arch: [ x64 ]
dist: [ zulu ]
fail-fast: false
max-parallel: 4
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}, ${{ matrix.arch }}
steps:
- uses: actions/[email protected]
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
architecture: ${{ matrix.arch }}
distribution: ${{ matrix.dist }}
- name: Show where Java Home is
run: echo JAVA_HOME=$JAVA_HOME
- name: Build with Maven
run: mvn --batch-mode --update-snapshots --errors package