Skip to content

Updated Recruitment SHACL shapes to Version 2 #197

Updated Recruitment SHACL shapes to Version 2

Updated Recruitment SHACL shapes to Version 2 #197

Workflow file for this run

name: Run python tests
on:
# Make workflow callable.
workflow_call:
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: Checkout the repo
uses: actions/checkout@v3
- name: Use Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Validate shapes with meta.shapes.ttl
run: make validate-shapes
- name: Run python tests
run: |
pytest