From 8ec323cf8bd3a8b4ce7f57e0d329ff995522e387 Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Fri, 20 Mar 2026 13:31:37 +0100 Subject: [PATCH 1/2] Validate Turtle files in Pull Requests --- .github/workflows/pull_request.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/pull_request.yml diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml new file mode 100644 index 0000000..1972041 --- /dev/null +++ b/.github/workflows/pull_request.yml @@ -0,0 +1,17 @@ +name: pull_request + +on: + pull_request + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v6 + - name: Install rapper + run: sudo apt-get update && sudo apt-get install -y --no-install-recommends raptor2-utils + - name: Validate ontology TTL + run: rapper -i turtle ontology/ontology.ttl -c + - name: Validate knowledge graph TTL + run: rapper -i turtle ontology/graph.ttl -c From 8f2efe874b5ee31926f1f5c0b346e4d24b55afd5 Mon Sep 17 00:00:00 2001 From: Tommaso Barbato Date: Sat, 21 Mar 2026 09:27:37 +0100 Subject: [PATCH 2/2] Trigger GitHub update