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