Skip to content

NIAD-3471 Support multiple given names in practitioner XML #903

NIAD-3471 Support multiple given names in practitioner XML

NIAD-3471 Support multiple given names in practitioner XML #903

Workflow file for this run

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
fetch-depth: 2
- name: Setup Java JDK
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654
with:
distribution: 'temurin'
java-version: 21
- name: run pitest
working-directory: ${{ matrix.path }}
run: ./gradlew pitest-github
env:
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}