-
Notifications
You must be signed in to change notification settings - Fork 0
90 lines (77 loc) · 2.46 KB
/
validate.yml
File metadata and controls
90 lines (77 loc) · 2.46 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: Validate Schemas
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
validate-schemas:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
- name: Install Python dependencies
run: |
pip install jsonschema rdflib pyshacl
- name: Validate JSON Schemas
run: |
python -c "
import json
import os
from pathlib import Path
errors = []
for schema_file in Path('schemas').rglob('*.json'):
try:
with open(schema_file) as f:
json.load(f)
print(f'✓ {schema_file}')
except Exception as e:
errors.append(f'{schema_file}: {e}')
print(f'✗ {schema_file}: {e}')
if errors:
print(f'\n{len(errors)} validation errors found')
exit(1)
else:
print(f'\nAll schemas are valid JSON!')
"
- name: Validate RDF Syntax
run: |
python -c "
from rdflib import Graph
from pathlib import Path
import json
errors = []
# Validate Turtle (.ttl) files
for rdf_file in Path('rdf').rglob('*.ttl'):
try:
g = Graph()
g.parse(rdf_file, format='turtle')
print(f'✓ {rdf_file} ({len(g)} triples)')
except Exception as e:
errors.append(f'{rdf_file}: {e}')
print(f'✗ {rdf_file}: {e}')
# Validate JSON-LD files (check JSON syntax only, not RDF parsing)
# Context files may have structures that rdflib cannot parse standalone
for jsonld_file in Path('rdf').rglob('*.jsonld'):
try:
with open(jsonld_file) as f:
json.load(f)
print(f'✓ {jsonld_file} (valid JSON)')
except Exception as e:
errors.append(f'{jsonld_file}: {e}')
print(f'✗ {jsonld_file}: {e}')
if errors:
print(f'\n{len(errors)} validation errors found')
exit(1)
else:
print(f'\nAll RDF files are valid!')
"