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 77cac74 commit 48d84beCopy full SHA for 48d84be
.github/workflows/checkCommit.yml
@@ -0,0 +1,34 @@
1
+name: Gradle Build Plugin
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - preview
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout code
17
+ uses: actions/checkout@v2
18
19
+ - name: Set up JDK
20
+ uses: actions/setup-java@v3
21
+ with:
22
+ distribution: 'temurin'
23
+ java-version: '17'
24
25
+ - name: Cache Gradle dependencies
26
+ uses: actions/cache@v3
27
28
+ path: ~/.gradle/caches
29
+ key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
30
+ restore-keys: |
31
+ ${{ runner.os }}-gradle-
32
33
+ - name: Build Plugin
34
+ run: ./gradlew buildPlugin
0 commit comments