RWA-987 - Add person attribute type configuration from existing metadata #7
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
# For push or pull request against the master branch, this will run mvn verify on the PR using Java 8 | |
name: Build with Maven | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ ubuntu-latest ] | |
java-version: [ 8 ] | |
runs-on: ${{ matrix.platform }} | |
env: | |
PLATFORM: ${{ matrix.platform }} | |
JAVA_VERSION: ${{ matrix.java-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java-version }} | |
cache: 'maven' | |
- name: Build with Maven | |
id: build_with_maven | |
run: | | |
mvn clean verify --batch-mode --file pom.xml |