Skip to content

Commit cac913b

Browse files
authored
Merge pull request #5 from nipype/project-name-fix
fix ci-cd
2 parents dc8fc2a + cee43b7 commit cac913b

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/ci-cd.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ name: Python package
88

99
on:
1010
push:
11-
branches: [ main, develop ]
11+
branches: [ main ]
1212
tags: [ '*' ]
1313
pull_request:
14-
branches: [ main, develop ]
14+
branches: [ main ]
1515

1616
jobs:
1717

1818
test:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
python-version: ['3.8', '3.11']
22+
python-version: ['3.11', '3.13']
2323

2424
steps:
2525

@@ -67,15 +67,14 @@ jobs:
6767
run: |
6868
pip install ".[test]"
6969
python -c "import pydra.tasks.fastsurfer as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
70-
python -c "import pydra as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
7170
- name: Test with pytest
7271
run: |
7372
pytest -sv --cov pydra.tasks.fastsurfer --cov-report xml
7473
- uses: codecov/codecov-action@v3
7574
if: ${{ always() }}
7675

7776
deploy:
78-
needs: [devcheck, test]
77+
needs: [test]
7978
runs-on: ubuntu-latest
8079
strategy:
8180
matrix:

0 commit comments

Comments
 (0)