Skip to content

added broken-installation detector (reminder of it) #270

added broken-installation detector (reminder of it)

added broken-installation detector (reminder of it) #270

Workflow file for this run

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 Commit
uses: actions/checkout@v3
- name: Set up JDK (21)
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'microsoft'
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Test with Gradle
run: ./gradlew test --parallel
- name: Build with Gradle
run: ./gradlew build --parallel