Skip to content

Commit

Permalink
Create validate-shapes.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
simantvermasap authored May 14, 2024
1 parent 26f2228 commit aa75d37
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/validate-shapes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Validate Shapes
on:
push:
branches:
- main
- shapes-and-schemas-subtask
pull_request:
branches:
- main
- shapes-and-schemas-subtask

jobs:
validate-shapes:
runs-on: ubuntu-latest
strategy:
matrix:
folders:
- catalog/message
- negotiation/message
- transfer/message

steps:
- uses: actions/checkout@v3
name: Checkout

- name: Install SHACL Validator
run: |
sudo pipx install pyshacl
- name: Validate Shapes
run: |
for folder in ${{ matrix.folders }}
do
for json_file in $folder/example/*.json
do
_base_filename=$(basename "$json_file" .json)
# Handle "_initial" files differently
if [[ "$_base_filename" =~ _initial$ ]]; then
_base_filename=${_base_filename%_initial} # Remove "_initial" suffix
fi
shape_file="$folder/shape/${_base_filename}-shape.ttl"
if [[ -f "$shape_file" ]]; then
echo "Validating $json_file against $shape_file"
pyshacl -df json-ld -sf turtle -s $shape_file $json_file
else
echo "WARNING: Shape file not found for $json_file"
fi
done
done

0 comments on commit aa75d37

Please sign in to comment.