First attempt at validation step for the TestScripts #1
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: Repo integrity 2 | |
| on: pull_request | |
| jobs: | |
| conformance: | |
| name: Validate changed TestScript resources against the Conformancelab profile | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Get the changed TestScripts | |
| id: get-changed-testscripts | |
| run: | | |
| files=$(git diff --name-only --diff-filter=ACM --ignore-space-at-eol main -- 'output/*.xml' ':(exclude)*/_reference/*.xml') | |
| echo "files=$files" | |
| - name: Show me what you have | |
| run: echo ${{ steps.get-changed-testscripts.outputs.files }} | |