NICTZ-35371 changed directories to fixtures in testscript for Verlosk… #889
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: Repo integrity 2 | |
| on: pull_request | |
| jobs: | |
| check-integrity: | |
| name: Check the integrity of the repository | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Check XML syntax for the src folder | |
| uses: Ahli/verify-xml-action@v1 | |
| with: | |
| path: "src" | |
| - name: Check XML syntax for the output folder | |
| uses: Ahli/verify-xml-action@v1 | |
| with: | |
| path: "output" | |
| - name: Check existence of QualificationTokens.json | |
| run: | | |
| if [[ ! -f Configuration/QualificationTokens.json ]]; then | |
| echo ::error::The file Configuration/QualificationTokens.json is gone. This file may never be removed! | |
| exit 1 | |
| fi | |
| - name: Check JSON syntax of the Configuration folder | |
| uses: limitusus/json-syntax-check@v2 | |
| env: | |
| BASE: ${{ github.workspace }}/Configuration | |
| with: | |
| pattern: "\\.json$" | |
| - name: Check JSON syntax of everything in the output folder | |
| uses: limitusus/json-syntax-check@v2 | |
| env: | |
| BASE: ${{ github.workspace }}/output | |
| with: | |
| pattern: "\\.json$" |