Skip to content

issue-56: update the readme document and make it better #19

issue-56: update the readme document and make it better

issue-56: update the readme document and make it better #19

Workflow file for this run

name: Validate JSON
on:
push:
branches: [ main, merge-action ]
pull_request:
branches: [ main ]
jobs:
validate-json:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate JSON files
shell: bash
run: |
echo "Checking JSON and JSON-LD files..."
find . \( -name "*.json" -o -name "*.jsonld" \) -type f -exec python3 -m json.tool {} \; > /dev/null
echo "All JSON and JSON-LD files are valid"