Skip to content

Commit aaf025d

Browse files
Volodymyr SavchenkoVolodymyr Savchenko
Volodymyr Savchenko
authored and
Volodymyr Savchenko
committed
change schedule
1 parent 381119d commit aaf025d

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.github/workflows/aggregate.yaml

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
name: Aggregate
22

33
on:
4-
# schedule:
5-
# - cron: '0 0 * * *'
6-
[push]
7-
8-
4+
schedule:
5+
- cron: '12 5 * * *'
96

10-
117
jobs:
128
aggregate:
139
runs-on: ubuntu-latest

workflowhub_graph/absolutize.py

+7-4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@
66
import rdflib
77

88

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+
916
def is_all_absolute(G: rdflib.Graph) -> bool:
1017
for triple in G:
1118
for item in triple:
@@ -23,10 +30,6 @@ def is_all_absolute(G: rdflib.Graph) -> bool:
2330
return True
2431

2532

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
3033

3134

3235
def make_paths_absolute(

0 commit comments

Comments
 (0)