JBEHAVE-1612 Skip parameter conversion for ignorable steps #791
Workflow file for this run
This file contains hidden or 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 |