update the Checkstyle tool to v13.4.2 #573
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| # GitHub Actions workflow for commits pushed to the Maud repo - all branches | |
| name: CI at GitHub | |
| on: [push] | |
| jobs: | |
| Java17-Linux: | |
| if: contains(toJson(github.event.commits), '[ci skip] ') == false | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 17 | |
| - uses: gradle/actions/wrapper-validation@v6 | |
| - run: ./gradlew -x checkstyleMain build javadoc --console=plain --stacktrace | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| archive: false | |
| path: build/distributions/Maud.tar | |
| Java26-Windows: | |
| if: contains(toJson(github.event.commits), '[ci skip] ') == false | |
| runs-on: windows-2025 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'liberica' | |
| java-version: 26 | |
| - run: ./gradlew build javadoc --console=plain --stacktrace | |
| shell: bash | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| archive: false | |
| path: build/distributions/Maud.zip |