reverted dfgo.ttl and metadata.ttl to version 202 (same as main) #91
Workflow file for this run
This file contains 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: Ontology testing | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
robot_report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install ROBOT | |
run: | | |
wget --quiet https://github.com/ontodev/robot/releases/download/v1.8.1/robot.jar | |
curl https://raw.githubusercontent.com/ontodev/robot/master/bin/robot > robot | |
chmod +x robot | |
sudo mv ./robot /usr/local/bin | |
sudo mv ./robot.jar /usr/local/bin | |
echo "ROBOT version:" | |
robot -V | |
- name: test for ERRORs with ROBOT report | |
run: | | |
robot report --profile .github/report_profile.txt --input dfgfo.ttl | |
- name: validate ontology against OWL DL profile | |
run: | | |
robot validate-profile --profile DL --input dfgfo.ttl | |
- name: produce report | |
run: | | |
robot report --profile .github/report_profile.txt --input dfgfo.ttl --output report.txt | |
- name: report artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: robot_report | |
path: report.txt |