added link_data --> clear_cache relationship to support repacking zarr nwbfiles #285
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: HDMF Dev Branch Compatibility | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
check_compatibility: | |
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@v4 | |
with: | |
fetch-depth: 0 # tags are required for versioneer to determine the version | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install HDMF_Zarr Requirements | |
run: | | |
python -m pip install -r requirements-dev.txt -r requirements.txt | |
pip install . | |
- name: Clone HDMF Dev Branch | |
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 . | |
cd .. | |
- name: Run HDMF_Zarr Tests | |
run: | |
pytest -v tests | |