Update dependency com.diffplug.spotless:spotless-maven-plugin to v2.39.0 #1856
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# base-parent (https://github.com/hazendaz/base-parent) | |
# | |
# Copyright 2011-2020 Hazendaz. | |
# | |
# All rights reserved. This program and the accompanying materials | |
# are made available under the terms of The Apache Software License, | |
# Version 2.0 which accompanies this distribution, and is available at | |
# https://www.apache.org/licenses/LICENSE-2.0.txt | |
# | |
# Contributors: | |
# Hazendaz (Jeremy Landis). | |
# | |
name: Java CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
java: [11, 17, 20, 21-ea] | |
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 test -B |