[GEF] Convert PropertyTable to GEF GraphicalViewer #239
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: WindowBuilder verification build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
check-dash-licenses: | |
uses: eclipse/dash-licenses/.github/workflows/mavenLicenseCheck.yml@master | |
with: | |
projectId: tools.windowbuilder | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
java: [ 17, 21 ] | |
runs-on: ${{ matrix.os }} | |
name: OS ${{ matrix.os }} Java ${{ matrix.java }} compile | |
timeout-minutes: 90 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 17/21 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' # See 'Supported distributions' for available options | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: Set up Maven | |
uses: stCarolas/[email protected] | |
with: | |
maven-version: 3.9.2 | |
- name: Build with Maven | |
uses: coactions/setup-xvfb@v1 | |
with: | |
run: >- | |
mvn -V -B -fae -ntp clean verify | |
- name: Upload Test Results for Java-${{ matrix.java }} | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: test-results-${{ matrix.os }}-java${{ matrix.java }} | |
if-no-files-found: error | |
path: | | |
${{ github.workspace }}/**/target/surefire-reports/*.xml |