File tree Expand file tree Collapse file tree 2 files changed +12
-24
lines changed Expand file tree Collapse file tree 2 files changed +12
-24
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -14,27 +14,33 @@ jobs:
14
14
steps :
15
15
- name : Checkout Repo
16
16
uses : actions/checkout@v4
17
- - name : Run tests
17
+ - name : Setup Gradle
18
18
uses : gradle/actions/setup-gradle@v3
19
- - name : Build
19
+ with :
20
+ validate-wrappers : true
21
+ - name : Run tests
20
22
run : ./gradlew build
21
23
publish :
22
24
name : Check that the publish plugin works
23
25
runs-on : ubuntu-latest
24
26
steps :
25
27
- name : Checkout Repo
26
28
uses : actions/checkout@v4
27
- - name : Check that the publish plugin works
29
+ - name : Setup Gradle
28
30
uses : gradle/actions/setup-gradle@v3
29
- - name : Build
31
+ with :
32
+ validate-wrappers : true
33
+ - name : Check that the publish plugin works
30
34
run : ./gradlew publishToMavenLocal
31
35
compile-test-snippets :
32
36
name : Compile test snippets
33
37
runs-on : ubuntu-latest
34
38
steps :
35
39
- name : Checkout Repo
36
40
uses : actions/checkout@v4
37
- - name : Compile the snippets in the tests
41
+ - name : Setup Gradle
38
42
uses : gradle/actions/setup-gradle@v3
39
- - name : Build
43
+ with :
44
+ validate-wrappers : true
45
+ - name : Compile the snippets in the tests
40
46
run : ./gradlew test -Pcompile-test-snippets
You can’t perform that action at this time.
0 commit comments