Update dependency io.cucumber:cucumber-bom to v7.14.1 #432
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: Test Java | |
on: | |
pull_request: | |
branches: | |
- '**' | |
workflow_call: | |
push: | |
branches: | |
- main | |
- renovate/** | |
jobs: | |
build: | |
name: 'Build' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache local Maven repository | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: build-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
build-${{ runner.os }}-maven- | |
- uses: | |
AdoptOpenJDK/install-jdk@v1 | |
with: | |
version: '11' | |
- name: Install dependencies | |
run: mvn install -DskipTests=true -DskipITs=true-Dmaven.javadoc.skip=true --batch-mode -Dstyle.color=always --show-version | |
- name: Test | |
run: mvn verify -Dstyle.color=always | |
javadoc: | |
name: 'Javadoc' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache local Maven repository | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: javadoc-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
javadoc-${{ runner.os }}-maven- | |
- uses: | |
AdoptOpenJDK/install-jdk@v1 | |
with: | |
version: '11' | |
- name: Install dependencies | |
run: mvn install -DskipTests=true -DskipITs=true -Dmaven.javadoc.skip=true --batch-mode -Dstyle.color=always --show-version | |
- name: Javadoc | |
run: mvn javadoc:jar -Dstyle.color=always |