NIAD-3496: make skeleton processing to support RCMR_IN030000UK07 message types #1078
Workflow file for this run
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: "Mutation Testing Workflow" | |
| on: | |
| pull_request: | |
| jobs: | |
| gp2gp-translator-mutation-testing: | |
| name: "Mutation Testing" | |
| if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]' | |
| strategy: | |
| matrix: | |
| path: [ ./gpc-api-facade, ./gp2gp-translator] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout project | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 | |
| with: | |
| fetch-depth: 2 | |
| - name: Setup Java JDK | |
| uses: actions/setup-java@dd06d9cba3e5552c54d9f8ea23572deb30010f7c | |
| with: | |
| distribution: 'temurin' | |
| java-version: 21 | |
| cache: 'gradle' | |
| - name: run pitest | |
| working-directory: ${{ matrix.path }} | |
| run: ./gradlew pitest-github | |
| env: | |
| REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} |