Skip to content

Commit

Permalink
change schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
Volodymyr Savchenko authored and Volodymyr Savchenko committed May 24, 2024
1 parent 381119d commit aaf025d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/aggregate.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
name: Aggregate

on:
# schedule:
# - cron: '0 0 * * *'
[push]


schedule:
- cron: '12 5 * * *'


jobs:
aggregate:
runs-on: ubuntu-latest
Expand Down
11 changes: 7 additions & 4 deletions workflowhub_graph/absolutize.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
import rdflib


# TODO: following https://github.com/workflowhub-eu/workflowhub-graph/issues/12
# builing upon is_all_absolute
# add extended RO-Crate profile validation
# get information like schema.org domain and check if the graph is compliant with the schema
# normative schema.org dev docs: https://schema.org/docs/developers.html
# make a note for validation of the graph

def is_all_absolute(G: rdflib.Graph) -> bool:
for triple in G:
for item in triple:
Expand All @@ -23,10 +30,6 @@ def is_all_absolute(G: rdflib.Graph) -> bool:
return True


# TODO: RO-Crate profile validation
# get information like schema.org domain and check if the graph is compliant with the schema
# normative schema.org dev docs: https://schema.org/docs/developers.html
# TODO: make a note for validation of the graph


def make_paths_absolute(
Expand Down

0 comments on commit aaf025d

Please sign in to comment.