Change groupId to com.intuit.json2jsontransformer (#6) #10
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: CI — Build and Test | |
| on: | |
| push: | |
| branches: ["**"] | |
| tags-ignore: ["v*"] | |
| pull_request: | |
| branches: ["**"] | |
| jobs: | |
| build: | |
| name: Build and Test (Java ${{ matrix.java }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| java: ['11', '17', '21'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| distribution: corretto | |
| cache: maven | |
| - name: Build and test | |
| run: mvn --batch-mode clean verify | |
| - name: Upload test results | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results-java-${{ matrix.java }} | |
| path: target/surefire-reports/ | |
| retention-days: 7 |