Bump maven-resolver.version from 1.9.13 to 1.9.20 #163
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
name: CI PRs | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
build: | |
timeout-minutes: 15 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- nickname: win | |
os: windows-latest | |
java: 17 | |
- nickname: macos | |
os: macos-latest | |
java: 17 | |
- nickname: linux | |
os: ubuntu-latest | |
java: 17 | |
name: CI Build ${{ matrix.nickname }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jvalkeal/setup-maven@v1 | |
with: | |
maven-version: 3.6.3 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: liberica | |
java-version: ${{ matrix.java }} | |
cache: maven | |
- name: Verify formatting | |
run: ./mvnw -B -Pfunctional-tests spring-javaformat:validate | |
- name: Build (Windows and MacOS, no functional tests) | |
if: runner.os != 'Linux' | |
run: ./mvnw -B clean install | |
- name: Build (Linux) | |
if: runner.os == 'Linux' | |
run: ./mvnw -B -Pfunctional-tests,javadoc clean install |