fix plugin and get basic features working #2
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: Plugin CI | |
on: | |
pull_request: | |
types: [ opened, synchronize, reopened ] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Test and Verify Plugin | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
# Enable GitHub Actions caching of the Gradle User Home (wrapper, dependencies, and build cache) | |
cache-read-only: ${{ github.event_name == 'pull_request' }} | |
gradle-home-cache-cleanup: true | |
- name: Run tests | |
run: ./gradlew --no-daemon clean test | |
- name: Run Plugin Verification | |
run: ./gradlew --no-daemon verifyPlugin |