File tree 2 files changed +9
-10
lines changed
2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1
1
name : Aggregate
2
2
3
3
on :
4
- # schedule:
5
- # - cron: '0 0 * * *'
6
- [push]
7
-
8
-
4
+ schedule :
5
+ - cron : ' 12 5 * * *'
9
6
10
-
11
7
jobs :
12
8
aggregate :
13
9
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 6
6
import rdflib
7
7
8
8
9
+ # TODO: following https://github.com/workflowhub-eu/workflowhub-graph/issues/12
10
+ # builing upon is_all_absolute
11
+ # add extended RO-Crate profile validation
12
+ # get information like schema.org domain and check if the graph is compliant with the schema
13
+ # normative schema.org dev docs: https://schema.org/docs/developers.html
14
+ # make a note for validation of the graph
15
+
9
16
def is_all_absolute (G : rdflib .Graph ) -> bool :
10
17
for triple in G :
11
18
for item in triple :
@@ -23,10 +30,6 @@ def is_all_absolute(G: rdflib.Graph) -> bool:
23
30
return True
24
31
25
32
26
- # TODO: RO-Crate profile validation
27
- # get information like schema.org domain and check if the graph is compliant with the schema
28
- # normative schema.org dev docs: https://schema.org/docs/developers.html
29
- # TODO: make a note for validation of the graph
30
33
31
34
32
35
def make_paths_absolute (
You can’t perform that action at this time.
0 commit comments