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 a77b551 commit 6b2079dCopy full SHA for 6b2079d
.github/workflows/gradle.yml
@@ -20,9 +20,9 @@ jobs:
20
ORG_GRADLE_PROJECT_customUntilBuild: "${{ matrix.until_build }}"
21
22
runs-on: ubuntu-latest
23
-
+
24
strategy:
25
- matrix:
+ matrix:
26
include:
27
- idea_version: "IU-2020.2"
28
php_plugin_version: "202.6397.94"
@@ -37,6 +37,12 @@ jobs:
37
uses: actions/setup-java@v1
38
with:
39
java-version: 1.8
40
+ - name: Cache Gradle packages
41
+ uses: actions/cache@v2
42
+ with:
43
+ path: ~/.gradle/caches
44
+ key: ${{ runner.os }}-${{ matrix.idea_version }}-${{ matrix.php_plugin_version }}-gradle-${{ hashFiles('**/*.gradle') }}
45
+ restore-keys: ${{ runner.os }}-gradle
46
- name: Grant execute permission for gradlew
47
run: chmod +x gradlew
48
- name: Build with Gradle
0 commit comments