[gha] Skip sha256 check for maven old / new runs #1235
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: Java Integration Tests | |
| on: [workflow_dispatch, push, pull_request] | |
| permissions: read-all | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 30 | |
| strategy: | |
| matrix: | |
| cache: [maven] | |
| distribution: [temurin] | |
| java: [21] | |
| # Due to needing git bash, run main integration tests on all 3 platforms | |
| os: [macos-latest, ubuntu-latest, windows-latest] | |
| fail-fast: false | |
| max-parallel: 4 | |
| name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Setup Java ${{ matrix.java }} ${{ matrix.distribution }} | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5 | |
| with: | |
| cache: ${{ matrix.cache }} | |
| distribution: ${{ matrix.distribution }} | |
| java-version: ${{ matrix.java }} | |
| - name: Integration Test with Maven | |
| run: ./mvnw verify --batch-mode --no-transfer-progress --show-version -D"license.skip=true" -Prun-it |