Skip to content

Moved test script to pytests #1

Moved test script to pytests

Moved test script to pytests #1

Workflow file for this run

name: Validate test cases
on: [push]
permissions:
contents: read
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout corpus repository
uses: actions/checkout@v4
with:
path: corpus
ref: integration
- name: Checkout eark-validator repository
uses: actions/checkout@v4
with:
repository: E-ARK-Software/eark-validator
path: validator
ref: integration
- name: Setup Python 3.13
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install eark-validator
run: |
python -m pip install --upgrade pip
pip install ./validator
- name: Install corpus tests
run: |
pip install -r ./corpus/tests/requirements.txt
- name: Run corpus tests
run: |
pytest