Skip to content

Commit

Permalink
Validate testcases workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dockmd committed Feb 7, 2024
1 parent f9ef143 commit f41d785
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/validate-testcases.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Validate testcases

on: [push]

permissions:
contents: read

jobs:
checkout:
name: Checkout repositories
runs-on: ubuntu-latest
steps:
- name: Checkout corpus repository
uses: actions/checkout@v4
with:
path: corpus
- name: Checkout validator repository
uses: actions/checkout@v4
with:
repository: E-ARK-Software/eark-validator
path: validator
build:
name: Build validator
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Check validator
run: ip-check

0 comments on commit f41d785

Please sign in to comment.