Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
ci: verify platform compatibility (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
le-yams authored Nov 12, 2023
1 parent fd79e68 commit 515f383
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/compatibility.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: IntelliJ Platform Plugin Compatibility

on:
push:

jobs:
compatibility:
name: Ensure plugin compatibility against 2023.2 for IDEA Community, IDEA Ultimate, and the latest EAP snapshot of IDEA Community.
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v1

- name: Setup Java 17
uses: actions/setup-java@v1
with:
java-version: 17

- 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:2023.2
ideaIU:2023.2
ideaIC:LATEST-EAP-SNAPSHOT
- name: Get log file path and print contents
run: |
echo "The verifier log file [${{steps.verify.outputs.verification-output-log-filename}}] contents : " ;
cat ${{steps.verify.outputs.verification-output-log-filename}}
Empty file modified gradlew
100644 → 100755
Empty file.

0 comments on commit 515f383

Please sign in to comment.