Skip to content

Commit

Permalink
Add checkstyle config to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
fracz committed Mar 17, 2024
1 parent d0a6e4d commit df892ff
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,16 @@ jobs:
java-version: '17'
distribution: 'adopt'
- name: Test
run: mvn test
run: mvn test
checkstyle:
name: Check with checkstyle
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
- name: Checkstyle
run: mvn checkstyle:check

0 comments on commit df892ff

Please sign in to comment.