We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13faf27 commit e661803Copy full SHA for e661803
.github/workflows/maven.yml
@@ -10,6 +10,17 @@ on:
10
branches: [ master ]
11
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
24
build:
25
runs-on: ubuntu-latest
26
name: Java ${{ matrix.java }} Maven Test
@@ -23,8 +34,6 @@ jobs:
34
uses: actions/setup-java@v1
35
with:
36
java-version: ${{ matrix.java }}
- - 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:
0 commit comments