Skip to content

Commit d9caf10

Browse files
committed
Adding GitHub Plugin compatibility workflow
1 parent 0e1f858 commit d9caf10

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: IntelliJ Plugin Compatibility
2+
3+
on:
4+
push:
5+
schedule:
6+
- cron: '0 0 * * *'
7+
8+
jobs:
9+
compatibility:
10+
name: Ensure plugin compatibility against 2020.1 & the latest EAP snapshot for IDEA Ultimate.
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Check out repository
16+
uses: actions/checkout@v1
17+
18+
- name: Setup Java 1.8
19+
uses: actions/setup-java@v1
20+
with:
21+
java-version: 1.8
22+
23+
- name: Build the plugin
24+
run: ./gradlew buildPlugin
25+
env:
26+
IS_CI: "True"
27+
28+
- name: Verify plugin on IntelliJ Platforms
29+
id: verify
30+
uses: ChrisCarini/intellij-platform-plugin-verifier-action@latest
31+
with:
32+
ide-versions: |
33+
ideaIU:2020.1.2
34+
ideaIU:2020.1.3
35+
ideaIU:LATEST-EAP-SNAPSHOT
36+
37+
- name: Get log file path and print contents
38+
run: |
39+
echo "The log file path is: ${{steps.verify.outputs.verification-output-log-filename}}" ;
40+
cat ${{steps.verify.outputs.verification-output-log-filename}}

0 commit comments

Comments
 (0)