Skip to content

AtomGraph/RDF-syntax-check

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 

Repository files navigation

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/[email protected]