48 situation module #100
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: Test ontology | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**.owl' | |
- '**.rdf' | |
- '**.ttl' | |
- '.github/workflows/test.yml' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '**.owl' | |
- '**.rdf' | |
- '**.ttl' | |
- '.github/workflows/test.yml' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: obolibrary/odklite | |
steps: | |
- uses: actions/checkout@v4 | |
- run: check-rdfxml gfo-light.owl | |
- run: check-rdfxml modules/gfo-core.ttl | |
- run: check-rdfxml modules/gfo-presentic.ttl | |
- run: check-rdfxml modules/gfo-timeExtended.ttl | |
- run: check-rdfxml modules/gfo-connector-presentic-timeExtended.ttl | |
- run: check-rdfxml modules/situation/gfo-situation.ttl | |
- run: check-rdfxml modules/situation/gfo-situation-object-extended.ttl | |
- run: check-rdfxml modules/situation/gfo-situation-object.ttl | |
- run: check-rdfxml modules/situation/gfo-situation-presentic-object-reified-presentic-attributives.ttl | |
- run: check-rdfxml modules/situation/gfo-situation-presentic-object-reified-presentic-objects.ttl | |
- run: check-rdfxml modules/situation/gfo-situation-presentic-object.ttl | |
- run: check-rdfxml modules/situation/gfo-situation-presentic-simple.ttl | |
- run: check-rdfxml modules/situation/gfo-situation-simple.ttl | |
- run: check-rdfxml modules/situation/gfo-situation-time-extended.ttl | |
- run: check-rdfxml modules/situation/examples/gfo-situation-object-example.ttl | |
- run: check-rdfxml modules/situation/examples/gfo-situation-object-extended-example.ttl | |
- run: check-rdfxml modules/situation/examples/gfo-situation-presentic-object-example.ttl | |
- run: check-rdfxml modules/situation/examples/gfo-situation-presentic-object-reified-presentic-attributives-example.ttl | |
- run: check-rdfxml modules/situation/examples/gfo-situation-presentic-object-reified-presentic-objects-example.ttl | |
- run: check-rdfxml modules/situation/examples/gfo-situation-presentic-simple-example.ttl | |
- run: check-rdfxml modules/situation/examples/gfo-situation-simple-example.ttl | |
- run: check-rdfxml modules/situation/examples/gfo-situation-time-extended-example.ttl | |
- run: robot reason --profile qc_report/profile.txt --input gfo-light.owl | |
- run: robot reason --profile qc_report/profile.txt --input modules/gfo-core.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/gfo-presentic.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/gfo-timeExtended.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/gfo-connector-presentic-timeExtended.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/gfo-situation.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/gfo-situation-object-extended.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/gfo-situation-object.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/gfo-situation-presentic-object-reified-presentic-attributives.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/gfo-situation-presentic-object-reified-presentic-objects.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/gfo-situation-presentic-object.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/gfo-situation-presentic-simple.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/gfo-situation-simple.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/gfo-situation-time-extended.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/examples/gfo-situation-object-example.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/examples/gfo-situation-object-extended-example.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/examples/gfo-situation-presentic-object-example.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/examples/gfo-situation-presentic-object-reified-presentic-attributives-example.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/examples/gfo-situation-presentic-object-reified-presentic-objects-example.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/examples/gfo-situation-presentic-simple-example.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/examples/gfo-situation-simple-example.ttl | |
- run: robot reason --profile qc_report/profile.txt --input modules/situation/examples/gfo-situation-time-extended-example.ttl | |
# - run: robot report --profile qc_report/profile.txt --input gfo-light.owl |