Implement the TwoPhaseCommit Coordinator and Participant for Consensus Commit #317
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: License Check | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| license-check: | |
| name: License Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@v7 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v6 | |
| - name: Execute Gradle 'checkLicense' task | |
| run: ./gradlew checkLicense | |
| - name: Show dependencies without allowed license | |
| if: failure() | |
| run: cat build/reports/dependency-license/dependencies-without-allowed-license.json |