Skip to content

Workflow for HDMF Dev compatibility #11

Workflow for HDMF Dev compatibility

Workflow for HDMF Dev compatibility #11

Workflow file for this run

name: Validate HDMF Dev Compatibility
on: [pull_request, workflow_dispatch]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Cancel non-latest runs
uses: styfle/[email protected]
with:
all_but_latest: true
access_token: ${{ github.token }}
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- 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 -r requirements-dev.txt -r requirements.txt
python -m pip install -e .
pytest tests/unit/common/