Fix issue with sub case instance complete and out parameter mapping #3229
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: Flowable 5 Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 'flowable-release-*' | |
| jobs: | |
| test_jdk: | |
| name: Flowable 5 Tests | |
| runs-on: ubuntu-latest | |
| env: | |
| # '>-' is a special YAML syntax and means that new lines would be replaced with spaces | |
| # and new lines from the end would be removed | |
| MAVEN_CONFIG: >- | |
| -V | |
| -B | |
| --no-transfer-progress | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 17 | |
| - name: Restore Maven Repository Cache | |
| uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: ${{ runner.os }}-maven- | |
| - name: Build and Test | |
| run: cd scripts && ./run-flowable5-tests.sh |