SQLite as Storage backend #4
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: Verify build-health and tests | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'docs/**' | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - name: Ensure gradlew is executable | |
| run: | | |
| if [ -f ./gradlew ]; then chmod +x ./gradlew; fi | |
| - name: Run build-health hook | |
| run: bash scripts/gradle/run_gradle_hook.sh . | |
| - name: Run tests | |
| run: bash scripts/gradle/run_task.sh . test |