File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Validate
2
+ on :
3
+ push :
4
+ branches : [ "**" ]
5
+ tags-ignore : [ "**" ]
6
+ pull_request :
7
+
8
+ permissions :
9
+ contents : read
10
+
11
+ concurrency :
12
+ cancel-in-progress : true
13
+ group : validate-${{ github.event.pull_request.number || github.ref }}
14
+
15
+ jobs :
16
+ build :
17
+ runs-on : ubuntu-latest
18
+ steps :
19
+ - name : Checkout repository
20
+ uses : actions/checkout@v4
21
+
22
+ - name : Setup java
23
+ uses : actions/setup-java@v4
24
+ with :
25
+ java-version : 11
26
+ check-latest : true
27
+ distribution : ' zulu'
28
+
29
+ - name : Setup Gradle
30
+ uses : gradle/actions/setup-gradle@v4
31
+ with :
32
+ add-job-summary : always
33
+ cache-cleanup : on-success
34
+ cache-read-only : ${{ github.ref != 'refs/heads/v3' }}
35
+
36
+ - name : Execute build
37
+ run : ./gradlew clean build --stacktrace
You can’t perform that action at this time.
0 commit comments