Skip to content

fix(deps): update dependency io.cucumber:cucumber-parent to v4.5.0 #1374

fix(deps): update dependency io.cucumber:cucumber-parent to v4.5.0

fix(deps): update dependency io.cucumber:cucumber-parent to v4.5.0 #1374

Workflow file for this run

name: test-java
on:
push:
branches:
- main
- renovate/**
paths:
- java/**
- testdata/**
- .github/**
pull_request:
branches:
- main
paths:
- java/**
- testdata/**
- .github/**
workflow_call:
jobs:
test-java:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os:
- ubuntu-latest
java: ['17', '21']
steps:
- uses: actions/checkout@v5
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- run: mvn verify
working-directory: java