Skip to content

Commit

Permalink
adds plugin verifier workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chedim committed Sep 19, 2024
1 parent 4920c01 commit e694eb1
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/plugin-verifier.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Plugin compatibility
on:
- push
- workflow_dispatch
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: 11.x.x
- name: Build the plugin using Gradle
run: ./gradlew buildPlugin
- uses: thepieterdc/intellij-plugin-verifier-action@v1.3.0
with:
plugin: 'build/distributions/couchbase-intellij-plugin-*'
verifier_version: 1.301
versions: |
LATEST-EAP-SNAPSHOT

0 comments on commit e694eb1

Please sign in to comment.