Make boat-maven-plugin goal doc
to run in Java 17.
#1339
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: BOAT | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
if: "!contains(github.event.head_commit.message, '[version bump]')" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'microsoft' | |
java-version: '21' | |
cache: 'maven' | |
- name: Build & Test | |
run: mvn -B test | |
sonar: | |
if: "!contains(github.event.head_commit.message, '[version bump]')" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'microsoft' | |
java-version: '21' | |
cache: 'maven' | |
- name: Build and Analyze | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: mvn -B verify sonar:sonar -Dgpg.skip |