forked from vivo-ontologies/vivo-ontology
-
Notifications
You must be signed in to change notification settings - Fork 2
31 lines (23 loc) · 924 Bytes
/
rdf-syntax-check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: RDF Syntax Check
on: [push, pull_request]
jobs:
rdf-syntax-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Download Apache Jena
run: |
curl -sS --fail "https://dlcdn.apache.org/jena/binaries/apache-jena-5.1.0.tar.gz" -o "/home/runner/work/_temp/apache-jena-5.1.0.tar.gz"
- name: Extract Apache Jena TAR
run: |
tar -xzf /home/runner/work/_temp/apache-jena-5.1.0.tar.gz -C /home/runner/work/_temp/
- name: List extracted files
run: ls -la /home/runner/work/_temp/
- name: List files inside extracted directory
run: ls -la /home/runner/work/_temp/apache-jena-fuseki-5.1.0
- name: RDF syntax check
uses: AtomGraph/RDF-syntax-check@v1.0.5
with:
jena-version: '5.1.0'
asf-archive: 'https://dlcdn.apache.org/jena/binaries/'