Snapshot report's inputs/outputs in engine after each step execution #298
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: "Chutney Dependency Convergence" | |
on: | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'chutney/**' | |
defaults: | |
run: | |
working-directory: ./chutney | |
jobs: | |
convergence-chutney: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Cache maven | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: maven_cache | |
- name: Build with Maven | |
run: mvn -B -V validate -Dconvergence -fae |