import mirroring issue #33
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: verification rules | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| ref: main | |
| path: main | |
| - name: Verification | |
| run: | | |
| curl -L -o robot.jar "https://github.com/ontodev/robot/releases/latest/download/robot.jar" | |
| java -jar robot.jar --version | |
| java -jar robot.jar validate-profile --profile DL --input main/cto.ttl --output validation.txt | |
| cat validation.txt | |
| #java -jar robot.jar verify --input main/cto.ttl --queries main/.github/workflows/verification-queries/label-missing.sparql main/.github/workflows/verification-queries/isdefinedby-missing.sparql main/.github/workflows/verification-queries/description-missing.sparql main/.github/workflows/verification-queries/https-missing.sparql | |
| java -jar robot.jar verify --input main/cto.ttl --queries main/.github/workflows/verification-queries/label-missing.sparql main/.github/workflows/verification-queries/description-missing.sparql main/.github/workflows/verification-queries/https-missing.sparql |