Skip to content

Update coordinates (#46) #26

Update coordinates (#46)

Update coordinates (#46) #26

Workflow file for this run

name: Java CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
fail-fast: false
matrix:
java: ['11', '17']
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'corretto'
cache: maven
- name: Verify
run: mvn -B verify --file pom.xml