We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fcd6b1 commit 4732b7aCopy full SHA for 4732b7a
.github/workflows/checkIDECompatibility.yml
@@ -0,0 +1,30 @@
1
+name: Check IDE Compatibility
2
+
3
+on:
4
+ schedule:
5
+ - cron: '55 2 * * 1'
6
+ workflow_dispatch:
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
12
+ strategy:
13
+ matrix:
14
+ java: [17, 21]
15
+ distribution: [temurin]
16
+ platformType: [IU, IC]
17
+ platformVersion: [LATEST-EAP-SNAPSHOT]
18
19
+ steps:
20
+ - uses: actions/checkout@v4
21
22
+ - name: Set up JDK
23
+ uses: actions/setup-java@v4
24
+ with:
25
+ distribution: ${{ matrix.distribution }}
26
+ java-version: ${{ matrix.java }}
27
+ cache: 'gradle'
28
29
+ - name: Build
30
+ run: ./gradlew runPluginVerifier -PplatformVersion=LATEST-EAP-SNAPSHOT
0 commit comments