From 5469de7ffe0c9dab12b7b72ee16fe98e45c50f92 Mon Sep 17 00:00:00 2001 From: Andre Castro Date: Wed, 28 Aug 2024 16:05:24 +0200 Subject: [PATCH] robot tests for owl --- .github/workflows/main.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3ccc7cf..27cc417 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,14 +20,17 @@ jobs: - name: test for ERRORs with ROBOT report run: | robot report --profile .github/report_profile.txt --input dfgfo.ttl + robot report --profile .github/report_profile.txt --input dfgfo.owl - name: validate ontology against OWL DL profile run: | robot validate-profile --profile DL --input dfgfo.ttl + robot validate-profile --profile DL --input dfgfo.owl - name: produce report run: | - robot report --profile .github/report_profile.txt --input dfgfo.ttl --output report.txt + robot report --profile .github/report_profile.txt --input dfgfo.ttl --output report-ttl.txt + robot report --profile .github/report_profile.txt --input dfgfo.owl --output report-owl.txt - name: report artifact uses: actions/upload-artifact@v2 with: - name: robot_report - path: report.txt \ No newline at end of file + name: robot_report_ttl + path: report-*.txt \ No newline at end of file