Skip to content

Commit d9c6684

Browse files
authored
FIX: Use quotes for Python version
YAML gotcha 3.10 -> 3.1, versions should be quoted.
1 parent ff18811 commit d9c6684

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/testdask.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: [3.9, 3.10, 3.11]
15+
python-version: ['3.9', '3.10', '3.11']
1616
fail-fast: false
1717

1818
steps:
@@ -39,4 +39,4 @@ jobs:
3939
pytest -v --dask pydra/engine --cov pydra --cov-config .coveragerc --cov-report xml:cov.xml
4040
4141
- name: Upload to codecov
42-
run: codecov -f cov.xml -F unittests -e GITHUB_WORKFLOW
42+
run: codecov -f cov.xml -F unittests -e GITHUB_WORKFLOW

0 commit comments

Comments
 (0)