File tree 2 files changed +24
-0
lines changed 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 27
27
- name : Build with Gradle
28
28
run : ./gradlew build -PideaVersion=${{ matrix.IJ }}
29
29
30
+ verify :
31
+ runs-on : ubuntu-latest
32
+
33
+ steps :
34
+ - name : Checkout Code
35
+ uses : actions/checkout@v2
36
+ - name : Set up JDK 11
37
+ uses : actions/setup-java@v1
38
+ with :
39
+ java-version : 11
40
+ - name : Grant execute permission for gradlew
41
+ run : chmod +x gradlew
42
+ - name : Build with Gradle
43
+ run : ./gradlew runPluginVerifier -PideaVersion=IC-2021.2
44
+ - name : Upload report
45
+ uses : actions/upload-artifact@v2
46
+ if : always()
47
+ with :
48
+ name : verifier-report
49
+ path : build/reports/pluginVerifier
Original file line number Diff line number Diff line change @@ -22,6 +22,10 @@ patchPluginXml {
22
22
version = projectVersion
23
23
}
24
24
25
+ runPluginVerifier {
26
+ ideVersions = [ideaVersion]
27
+ }
28
+
25
29
publishPlugin {
26
30
token = jetBrainsToken
27
31
channels = [jetBrainsChannel]
You can’t perform that action at this time.
0 commit comments