JBEHAVE-1604 Fix loading of chained tables without user properties #774
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: JBehave CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ ubuntu-latest, macos-latest ] | |
java: [ 8, 11, 17, 21 ] | |
include: | |
- jdk-distribution: temurin | |
- jdk-distribution: zulu | |
platform: macos-latest | |
java: 8 | |
fail-fast: false | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: ${{ matrix.jdk-distribution }} | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: Build | |
if: matrix.java == 8 | |
shell: bash | |
run: ./mvnw install -s settings.xml -DskipTests=true -Dmaven.javadoc.skip=true --batch-mode -e --quiet | |
- name: Build | |
if: matrix.java != 8 | |
shell: bash | |
run: ./mvnw install -s settings.xml -P examples --batch-mode -e |