Skip to content

fix plugin and get basic features working #2

fix plugin and get basic features working

fix plugin and get basic features working #2

Workflow file for this run

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