File tree Expand file tree Collapse file tree 1 file changed +0
-32
lines changed Expand file tree Collapse file tree 1 file changed +0
-32
lines changed Original file line number Diff line number Diff line change 1515
1616jobs :
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 :
You can’t perform that action at this time.
0 commit comments