-
-
Notifications
You must be signed in to change notification settings - Fork 4
40 lines (34 loc) · 947 Bytes
/
compatibility.yml
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
37
38
39
40
name: Compatibility
on:
pull_request:
branches:
- master
push:
branches:
- master
schedule:
- cron: '0 0 * * *'
jobs:
compatibility:
name: Compatibility with lowest version and latest EAP
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11.x.x
- uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Cache verifier IDEs
uses: actions/cache@v3
with:
path: ~/.pluginVerifier/ides
key: ${{ runner.os }}-plugin-verifier
- name: Build the plugin using Gradle
run: ./gradlew runPluginVerifier -Pplugin.verifier.home.dir=~/.pluginVerifier