-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (30 loc) · 1.08 KB
/
main.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
32
33
name: Ontology testing
on: [push, pull_request, workflow_dispatch]
jobs:
robot_report:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install ROBOT
run: |
wget --quiet https://github.com/ontodev/robot/releases/download/v1.8.1/robot.jar
curl https://raw.githubusercontent.com/ontodev/robot/master/bin/robot > robot
chmod +x robot
sudo mv ./robot /usr/local/bin
sudo mv ./robot.jar /usr/local/bin
echo "ROBOT version:"
robot -V
- name: test for ERRORs with ROBOT report
run: |
robot report --profile .github/report_profile.txt --input dfgfo.ttl
- name: validate ontology against OWL DL profile
run: |
robot validate-profile --profile DL --input dfgfo.ttl
- name: produce report
run: |
robot report --profile .github/report_profile.txt --input dfgfo.ttl --output report.txt
- name: report artifact
uses: actions/upload-artifact@v2
with:
name: robot_report
path: report.txt