Skip to content

Commit

Permalink
robot tests for owl
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre Castro committed Aug 28, 2024
1 parent d3bcf7f commit 5469de7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,17 @@ jobs:
- name: test for ERRORs with ROBOT report
run: |
robot report --profile .github/report_profile.txt --input dfgfo.ttl
robot report --profile .github/report_profile.txt --input dfgfo.owl
- name: validate ontology against OWL DL profile
run: |
robot validate-profile --profile DL --input dfgfo.ttl
robot validate-profile --profile DL --input dfgfo.owl
- name: produce report
run: |
robot report --profile .github/report_profile.txt --input dfgfo.ttl --output report.txt
robot report --profile .github/report_profile.txt --input dfgfo.ttl --output report-ttl.txt
robot report --profile .github/report_profile.txt --input dfgfo.owl --output report-owl.txt
- name: report artifact
uses: actions/upload-artifact@v2
with:
name: robot_report
path: report.txt
name: robot_report_ttl
path: report-*.txt

0 comments on commit 5469de7

Please sign in to comment.