Skip to content

Commit

Permalink
Create validate_schema.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
mavaylon1 authored Sep 9, 2023
1 parent e199926 commit 9f0ed7b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/validate_schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Validate schema

on: [push, pull_request, workflow_dispatch]

jobs:
validate:
# run pipeline on either a push event or a PR event on a fork
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dev branch of HDMF
run: |
pip install git+https://github.com/hdmf-dev/hdmf.git
- name: Validate schema specification
run: |
validate_hdmf_spec common -m hdmf-common.schema.json

0 comments on commit 9f0ed7b

Please sign in to comment.