Skip to content

Commit e49b98b

Browse files
authored
Fix broken hdmf dev compatibility workflow
1 parent 31215f4 commit e49b98b

1 file changed

Lines changed: 8 additions & 11 deletions

File tree

.github/workflows/hdmf_compatibility_schema.yml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,20 @@ env:
88
jobs:
99
check_compatibility:
1010
runs-on: ubuntu-latest
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.ref }}
13+
cancel-in-progress: true
1114
steps:
12-
- name: Cancel non-latest runs
13-
uses: styfle/cancel-workflow-action@0.11.0
15+
- uses: actions/checkout@v6
16+
- name: Set up Python 3.14
17+
uses: actions/setup-python@v6
1418
with:
15-
all_but_latest: true
16-
access_token: ${{ github.token }}
17-
- uses: actions/checkout@v4
18-
- name: Set up Python 3.11
19-
uses: actions/setup-python@v4
20-
with:
21-
python-version: "3.11"
19+
python-version: "3.14"
2220
- name: Clone HDMF and Run HDMF tests
2321
run: |
2422
git clone https://github.com/hdmf-dev/hdmf.git --recurse-submodules
2523
cd hdmf
26-
python -m pip install -r requirements-dev.txt -r requirements.txt
27-
python -m pip install -e .
24+
python -m pip install -e ".[all]"
2825
cd src/hdmf/common/hdmf-common-schema
2926
git checkout $HEAD_REF # checkout branch
3027
cd ../../../..

0 commit comments

Comments
 (0)