Add eventSourceUrl tests #15
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: Param builder Java demo CI | |
| on: | |
| push: | |
| paths: | |
| - 'java/**' | |
| tags-ignore: | |
| - 'v*' # Ignores all tag pushes | |
| branches: | |
| - '**' | |
| pull_request: | |
| paths: | |
| - 'java/**' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: java/ | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Java 8 on Param builder demo example | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 8 | |
| - name: Change gradlew wrapper permissions | |
| run: chmod +x ./gradlew | |
| - name: Build with Gradle | |
| run: ./gradlew build |