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 39bf63a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/plugin-verifier.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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
- name: Verify Plugin on IntelliJ Platforms
id: verify
uses: ChrisCarini/intellij-platform-plugin-verifier-action@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
ide-versions: |
ideaIC:LATEST-EAP-SNAPSHOT

0 comments on commit 39bf63a

Please sign in to comment.