Handle exceptions that occur on first run #206
Workflow file for this run
This file contains 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: Build CI | |
on: | |
push: | |
branches: [ "main", "2.0.x" ] | |
pull_request: | |
branches: [ "main", "2.0.x" ] | |
permissions: | |
contents: read | |
jobs: | |
building: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'microsoft' | |
- name: Run chmod to make gradlew executable | |
run: chmod +x ./gradlew | |
- name: Test with Gradle | |
run: ./gradlew build --parallel |