Skip to content

Commit

Permalink
feat: check all files
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasBousselin committed Jan 24, 2025
1 parent 7229eae commit 7209850
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_context_valid_json.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
error=0
for file in $(find . -name "*.jsonld"); do
printf "Checking $file .. "
jq empty $file && echo "OK" || error=1
jq empty $file && echo "OK" || (echo "KO invalid JSON" && error=1)
done
exit $error
shell: bash
1 change: 0 additions & 1 deletion jsonld-contexts/sedimark-ai-model-asset.jsonld
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,3 @@
"hasArchitecture": "https://sedimark.github.io/ontology#hasArchitecture",
"datasetProcessing": "https://sedimark.github.io/ontology#datasetProcessing"

}

0 comments on commit 7209850

Please sign in to comment.