-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (29 loc) · 1.17 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
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
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 mato.ttl
- name: produce report
run: |
robot report --profile .github/report_profile.txt --input mato.ttl --output report.txt
- name: report artifact
uses: actions/upload-artifact@v2
with:
name: robot_report
path: report.txt