AtomGraph / RDF-syntax-check

GitHub action that validates the syntax of selected RDF files in the repository

Home Page:https://github.com/marketplace/actions/rdf-syntax-check

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RDF syntax check

GH action that iterates all RDF files in the repository and validates their syntax using Apache Jena's riot parser. The action fails as soon as an invalid file is detected.

Usage example

name: RDF data validation

on:
  push:
    paths:
      - '**.ttl'
      - '**.trig'
      - '**.nt'
      - '**.nq'
      - '**.rdf'
      - '**.trix'
      - '**.jsonld'

jobs:
  rdf-syntax-check:
    runs-on: ubuntu-latest
    steps:
      - name: RDF syntax check
        uses: AtomGraph/RDF-syntax-check@v1.0.5

About

GitHub action that validates the syntax of selected RDF files in the repository

https://github.com/marketplace/actions/rdf-syntax-check

License:Apache License 2.0