Fix PrintUtil for multi-valued attributes #313
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: Build | |
on: [pull_request] | |
jobs: | |
build-m2: | |
strategy: | |
# do not cancel other builds if one fails | |
fail-fast: false | |
matrix: | |
os: [windows-2019, macos-11] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 20 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Build with Maven | |
run: mvn -B -Pm2 clean verify --file pom.xml | |
build-p2: | |
strategy: | |
# do not cancel other builds if one fails | |
fail-fast: false | |
matrix: | |
os: [windows-2019, macos-11] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 20 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Build with Maven | |
run: mvn -B -Pp2 clean verify --file pom.xml |