Bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1 in /tools/rack #141
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
name: RITE Integration Workflow | |
# Runs whenever a pull request is created, reopened, or modified | |
on: | |
pull_request: | |
types: [ opened, reopened, synchronize ] | |
workflow_dispatch: | |
# Runs integration workflow as a CI check: | |
# - Builds RITE source and runs unit tests | |
jobs: | |
integration: | |
container: | |
image: maven:${{ matrix.maven-version }} | |
volumes: | |
- /usr/bin/docker:/usr/bin/docker | |
- /var/run/docker.sock:/var/run/docker.sock | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
distribution: [ temurin ] | |
java-version: [ 17 ] | |
maven-version: [ 3.9.5 ] | |
os: [ ubuntu-22.04 ] | |
steps: | |
- name: Check out RITE source | |
uses: actions/checkout@v4.1.2 | |
- name: Set up Java and Maven | |
uses: actions/setup-java@v4.2.1 | |
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 |