File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change 13
13
steps :
14
14
- name : Check out
15
15
uses : actions/checkout@v4
16
+
17
+ - name : Set up JDK for running Gradle
18
+ uses : actions/setup-java@v4
19
+ with :
20
+ distribution : temurin
21
+ java-version : 17
22
+
23
+ - name : Set up gradle
24
+ uses : gradle/actions/setup-gradle@v4
25
+ with :
26
+ cache-read-only : ${{ github.event_name == 'pull_request' }}
27
+
28
+ - name : Build
29
+ run : ./gradlew clean check shadowJar
30
+
16
31
- name : Check out oats
17
32
uses : actions/checkout@v4
18
33
with :
@@ -22,13 +37,13 @@ jobs:
22
37
- name : Set up Go
23
38
uses : actions/setup-go@v5
24
39
with :
25
- go-version : ' 1.21 '
40
+ go-version : ' 1.23 '
26
41
cache-dependency-path : oats/go.sum
27
42
- name : Run acceptance tests
28
43
run : .github/scripts/run-acceptance-tests.sh
29
44
- name : upload log file
30
45
uses : actions/upload-artifact@v4
31
46
if : failure()
32
47
with :
33
- name : log output
48
+ name : OATS logs
34
49
path : oats/yaml/build/**/*.log
You can’t perform that action at this time.
0 commit comments