Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,24 @@ jobs:
path: site/
retention-days: 7

validate-panet:
needs: build-panet
runs-on: ubuntu-latest
container: dlrdw/linteddata:3.0.0
steps:
- name: Download freshly built PaNET
uses: actions/download-artifact@v4
with:
name: PaNET

- name: Check with LintedData
run: LintedData source/PaNET_reasoned.owl --markdown linted-data.md --junit linted-data.xml

- name: Add LintedData results to job summary
if: ${{ !cancelled() }}
run: head -q -c1024k linted-data.md >> $GITHUB_STEP_SUMMARY


build-webpage:
runs-on: ubuntu-latest
needs: build-panet
Expand Down
Loading