[JEWEL-826] Add bridge tests in Gradle build #320
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: Jewel Checks | |
on: | |
pull_request: | |
paths: | |
- "platform/jewel/**" | |
defaults: | |
run: | |
working-directory: platform/jewel | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: zulu | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Run :check task | |
run: ./gradlew check --continue --no-daemon |