-
Notifications
You must be signed in to change notification settings - Fork 3
76 lines (71 loc) · 5.11 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
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.owl
- 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 report --profile qc_report/profile.txt -i gfo.owl
# - run: robot report --profile qc_report/profile.txt -i gfo-light.owl
- run: robot report --profile qc_report/profile.txt -i modules/gfo-core.ttl
- run: robot report --profile qc_report/profile.txt -i modules/gfo-presentic.ttl
- run: robot report --profile qc_report/profile.txt -i modules/gfo-timeExtended.ttl
- run: robot report --profile qc_report/profile.txt -i modules/situation/gfo-situation.ttl
- run: robot report --profile qc_report/profile.txt -i modules/situation/gfo-situation-object-extended.ttl
- run: robot report --profile qc_report/profile.txt -i modules/situation/gfo-situation-object.ttl
- run: robot report --profile qc_report/profile.txt -i modules/situation/gfo-situation-presentic-object-reified-presentic-attributives.ttl
- run: robot report --profile qc_report/profile.txt -i modules/situation/gfo-situation-presentic-object-reified-presentic-objects.ttl
- run: robot report --profile qc_report/profile.txt -i modules/situation/gfo-situation-presentic-object.ttl
- run: robot report --profile qc_report/profile.txt -i modules/situation/gfo-situation-presentic-simple.ttl
- run: robot report --profile qc_report/profile.txt -i modules/situation/gfo-situation-simple.ttl
- run: robot report --profile qc_report/profile.txt -i modules/situation/gfo-situation-time-extended.ttl
- run: robot merge --collapse-import-closure true -i modules/gfo-connector-presentic-timeExtended.ttl report --profile qc_report/profile.txt
- run: robot merge --collapse-import-closure true -i modules/situation/examples/gfo-situation-object-example.ttl report --profile qc_report/profile.txt
- run: robot merge --collapse-import-closure true -i modules/situation/examples/gfo-situation-object-extended-example.ttl report --profile qc_report/profile.txt
- run: robot merge --collapse-import-closure true -i modules/situation/examples/gfo-situation-presentic-object-example.ttl report --profile qc_report/profile.txt
- run: robot merge --collapse-import-closure true -i modules/situation/examples/gfo-situation-presentic-object-reified-presentic-attributives-example.ttl report --profile qc_report/profile.txt
- run: robot merge --collapse-import-closure true -i modules/situation/examples/gfo-situation-presentic-object-reified-presentic-objects-example.ttl report --profile qc_report/profile.txt
- run: robot merge --collapse-import-closure true -i modules/situation/examples/gfo-situation-presentic-simple-example.ttl report --profile qc_report/profile.txt
- run: robot merge --collapse-import-closure true -i modules/situation/examples/gfo-situation-simple-example.ttl report --profile qc_report/profile.txt
- run: robot merge --collapse-import-closure true -i modules/situation/examples/gfo-situation-time-extended-example.ttl report --profile qc_report/profile.txt