Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.0 to 3.6.2 in /tools/rack #85
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
# Runs whenever a pull request is created, modified, or reopened | |
name: RITE Integration Workflow | |
on: | |
pull_request: | |
types: [ opened, reopened, synchronize ] | |
workflow_dispatch: | |
# Builds RITE source with Java and Maven | |
# Caches Maven dependencies | |
jobs: | |
integration: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
distribution: [ temurin ] | |
java-version: [ 17 ] | |
os: [ ubuntu-22.04 ] | |
steps: | |
- name: Check out RITE source | |
uses: actions/[email protected] | |
- name: Set up Java and Maven | |
uses: actions/[email protected] | |
with: | |
#cache: maven | |
distribution: ${{ matrix.distribution }} | |
java-version: ${{ matrix.java-version }} | |
- name: Build RITE source | |
run: mvn -B package -f tools/rack/pom.xml -Dtycho.localArtifacts=ignore |