We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 170852d commit 72ec283Copy full SHA for 72ec283
1 file changed
.github/workflows/build-pr.yml
@@ -21,3 +21,19 @@ jobs:
21
run: .github/setup.sh
22
- name: Execute the build
23
run: .github/build.sh
24
+
25
+ validate-formatting:
26
+ runs-on: ubuntu-latest
27
28
+ steps:
29
+ - uses: actions/checkout@v2
30
+ - name: Set up Java
31
+ uses: actions/setup-java@v3
32
+ with:
33
+ java-version: '11'
34
+ distribution: 'zulu'
35
+ cache: 'maven'
36
+ - name: Set up CI environment
37
+ run: .github/setup.sh
38
+ - name: Execute the build
39
+ run: mvn formatter:validate
0 commit comments