This repository was archived by the owner on Apr 6, 2026. It is now read-only.
feat(compat): add APIGW+SFN+DynamoDB CRUDL end-to-end test group #78
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: Java Compile Check | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'sdk-test-java/**/*.java' | |
| - 'sdk-test-java/**/pom.xml' | |
| pull_request: | |
| paths: | |
| - 'sdk-test-java/**/*.java' | |
| - 'sdk-test-java/**/pom.xml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| compile: | |
| name: Compile Java | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| java-version: '25' | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Compile | |
| run: mvn compile -B | |
| working-directory: sdk-test-java |