File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 30
30
remote-build-cache-proxy-enabled : false
31
31
build-root-directory : ${{matrix.build-root}}
32
32
arguments : test
33
+ shadow :
34
+ strategy :
35
+ matrix :
36
+ java-version : [11]
37
+ name : Shadow Jar Build (Java ${{matrix.java-version}})
38
+ runs-on : ubuntu-latest
39
+ steps :
40
+ - id : checkout-repo
41
+ uses : actions/checkout@v2
42
+ with :
43
+ fetch-depth : 0
44
+ - id : setup-java
45
+ name : Setup Java ${{matrix.java-version}}
46
+ uses : actions/setup-java@v1
47
+ with :
48
+ java-version : ${{matrix.java-version}}
49
+ - id : setup-gradle-cache
50
+ name : Run Gradle Build with ShadowJar
51
+
52
+ with :
53
+ job-id : gradle-shadow-java-${{matrix.java-version}}
54
+ remote-build-cache-proxy-enabled : false
55
+ build-root-directory : .
56
+ arguments : shadowJar
33
57
style :
34
58
name : Stylecheck (${{matrix.name || matrix.build-root}})
35
59
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments