-
-
Notifications
You must be signed in to change notification settings - Fork 9
36 lines (30 loc) · 1.02 KB
/
verify_plugin.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Verify IDE compatibility
on:
push:
jobs:
compatibility:
name: Check compatibility against minimal supported IDEA, PyCharm and the latest IDEA EAP
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v1
- name: Setup Java 14
uses: actions/setup-java@v1
with:
java-version: 14
- 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
with:
ide-versions: |
ideaIC:2022.2
ideaIU:2022.2
pycharmPC:2022.2.5
pycharmPY:2022.2.5
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}}