Skip to content
This repository has been archived by the owner on Dec 23, 2023. It is now read-only.

Fix source plugin execution and bring other items up to date along with protections on javadocs #14

Fix source plugin execution and bring other items up to date along with protections on javadocs

Fix source plugin execution and bring other items up to date along with protections on javadocs #14

Workflow file for this run

name: Java CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
java: [8, 11, 17, 21]
distribution: ['zulu']
fail-fast: false
max-parallel: 4
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
- name: Test with Maven
run: ./mvnw clean test