Skip to content

Commit a4ec983

Browse files
committed
removed devcheck GH job
1 parent 49af254 commit a4ec983

File tree

1 file changed

+0
-32
lines changed

1 file changed

+0
-32
lines changed

.github/workflows/ci-cd.yaml

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -15,38 +15,6 @@ on:
1515

1616
jobs:
1717

18-
devcheck:
19-
runs-on: ubuntu-latest
20-
strategy:
21-
matrix:
22-
python-version: ['3.8', '3.11'] # Check oldest and newest versions
23-
pip-flags: ['', '--editable']
24-
pydra:
25-
- 'pydra'
26-
- '--editable git+https://github.com/nipype/pydra.git#egg=pydra'
27-
steps:
28-
- name: Checkout
29-
uses: actions/checkout@v4
30-
- name: Revert version to most recent tag on upstream update
31-
if: github.event_name == 'repository_dispatch'
32-
run: git checkout $(git tag -l | tail -n 1 | awk -F post '{print $1}')
33-
- name: Set up Python ${{ matrix.python-version }}
34-
uses: actions/setup-python@v5
35-
with:
36-
python-version: ${{ matrix.python-version }}
37-
- name: Install build dependencies
38-
run: |
39-
python -m pip install --upgrade pip
40-
- name: Install Pydra
41-
run: |
42-
pip install ${{ matrix.pydra }}
43-
python -c "import pydra as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
44-
- name: Install task package
45-
run: |
46-
pip install ${{ matrix.pip-flags }} ".[dev]"
47-
python -c "import pydra.tasks.fastsurfer as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
48-
python -c "import pydra as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
49-
5018
test:
5119
runs-on: ubuntu-latest
5220
strategy:

0 commit comments

Comments
 (0)