Skip to content

Commit 4732b7a

Browse files
committed
[Workflow] Create for IDE compatibility check
1 parent 8fcd6b1 commit 4732b7a

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)