Skip to content

Commit

Permalink
feat: only jsonld
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasBousselin committed Jan 24, 2025
1 parent 227da8d commit 99a6253
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/check_json_validity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ jobs:
run: |
for file in $(find . -name "*.jsonld"); do
printf "Checking $file .. "
jq empty $file && echo "OK"
jq empty $file || exit 1
echo "OK"
done || exit 1
shell: bash
- name: Check JSON files
run: |
for file in $(find . -name "*.json"); do
printf "Checking $file .. "
jq empty $file || exit 1
echo "OK"
done || exit 1
shell: bash
2 changes: 1 addition & 1 deletion vessel/jsonld-contexts/vessel.jsonld
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
"timezone": "https://uri.fiware.org/ns/data-models#timezone",
"unlocs": "https://uri.fiware.org/ns/data-models#unlocs",
"code": "https://uri.fiware.org/ns/data-models#code"
}

0 comments on commit 99a6253

Please sign in to comment.