File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 10
10
branches : [ master ]
11
11
12
12
jobs :
13
+ verify-format :
14
+ runs-on : ubuntu-latest
15
+ name : Verify Source Format
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+ - name : Setup Java
19
+ uses : actions/setup-java@v1
20
+ with :
21
+ java-version : 8.0.x
22
+ - name : Verify Format and License
23
+ run : mvn spotless:check
13
24
build :
14
25
runs-on : ubuntu-latest
15
26
name : Java ${{ matrix.java }} Maven Test
23
34
uses : actions/setup-java@v1
24
35
with :
25
36
java-version : ${{ matrix.java }}
26
- - name : Verify Format and License
27
- run : mvn spotless:check
28
37
- name : Build with Maven
29
38
run : mvn -q test -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
30
39
build-graalvm :
Original file line number Diff line number Diff line change 334
334
<plugin >
335
335
<groupId >com.diffplug.spotless</groupId >
336
336
<artifactId >spotless-maven-plugin</artifactId >
337
- <version >2.1.0 </version >
337
+ <version >2.3.1 </version >
338
338
<configuration >
339
339
<formats >
340
340
<format >
You can’t perform that action at this time.
0 commit comments