Update patch versions #643
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
| name: Test | |
| on: | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/cache@v4 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven- | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 21 | |
| distribution: zulu | |
| - name: Formatter Check | |
| run: mvn formatter:validate | |
| - name: License Check | |
| run: mvn license:check | |
| - name: Build with Maven | |
| run: mvn -B test --file pom.xml | |
| - uses: ashley-taylor/junit-report-annotations-action@master | |
| if: always() | |
| with: | |
| access-token: ${{ secrets.GITHUB_TOKEN }} |