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 09d20ce commit ff92e4aCopy full SHA for ff92e4a
.github/workflows/checkBuild.yml
@@ -61,3 +61,24 @@ jobs:
61
name: demo-files-java-${{ matrix.java }}
62
path: ${{ env.DEMO_MAVEN_MODULE }}/target/${{ env.DEMO_MAVEN_MODULE }}.jar
63
if-no-files-found: error
64
+
65
+ code-style:
66
+ runs-on: ubuntu-latest
67
68
+ strategy:
69
+ matrix:
70
+ java: [17]
71
+ distribution: [temurin]
72
73
+ steps:
74
+ - uses: actions/checkout@v4
75
76
+ - name: Set up JDK
77
+ uses: actions/setup-java@v4
78
+ with:
79
+ distribution: ${{ matrix.distribution }}
80
+ java-version: ${{ matrix.java }}
81
+ cache: 'maven'
82
83
+ - name: Run Checkstyle
84
+ run: mvn -B checkstyle:check -P checkstyle -T2C
0 commit comments