This repository has been archived by the owner on May 13, 2024. It is now read-only.
fix: parsing and highlighting #12
This file contains 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: 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:2022.2 | |
ideaIU:2022.2 | |
goland:2022.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}} |