Skip to content

Move HERD from experimental to common #48

Move HERD from experimental to common

Move HERD from experimental to common #48

name: Check HDMF Dev Compatibility
on: [pull_request, workflow_dispatch]
env:
HEAD_REF: ${{ github.head_ref }}
jobs:
check_compatibility:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Clone HDMF and Run HDMF tests
run: |
git clone https://github.com/hdmf-dev/hdmf.git --recurse-submodules
cd hdmf
python -m pip install -e ".[all]"
cd src/hdmf/common/hdmf-common-schema
git checkout $HEAD_REF # checkout branch
cd ../../../..
pytest tests/unit/common/