Skip to content

Commit

Permalink
Put quotes around python versions in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
hrzn committed Jun 21, 2022
1 parent 32d6b93 commit 96c97c1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: "2. Set up Python 3.9"
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: '3.9'

# downloading gradle multiple times in parallel can yield to connection errors
- name: "3. Cache gradle distribution"
Expand All @@ -39,7 +39,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
python-version: [3.9]
python-version: ['3.9']
flavour: ['all']

steps:
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- name: "2. Set up Python 3.9"
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: '3.9'

- name: "3. Install pandoc"
run: |
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
- name: "2. Set up Python 3.9"
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: '3.9'

# downloading gradle multiple times in parallel can yield to connection errors
- name: "3. Cache gradle distribution"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: "2. Set up Python 3.9"
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: '3.9'

- name: "3. Install pandoc"
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: "2. Set up Python 3.9"
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: '3.9'

# downloading gradle multiple times in parallel can yield to connection errors
- name: "3. Cache gradle distribution"
Expand All @@ -39,7 +39,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
python-version: [3.8, 3.9, 3.10]
python-version: ['3.8', '3.9', '3.10']
flavour: ['core', 'torch', 'all']

steps:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
- name: "2. Set up Python 3.9"
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: '3.9'

# downloading gradle multiple times in parallel can yield to connection errors
- name: "3. Cache gradle distribution"
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
- name: "2. Set up Python 3.9"
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: '3.9'

- name: "3. Install pandoc"
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: "2. Set up Python 3.9"
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: '3.9'

- name: "3. Update pip"
run: |
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
- name: "2. Set up Python 3.9"
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: '3.9'

- name: "3. Install pandoc"
run: |
Expand Down

0 comments on commit 96c97c1

Please sign in to comment.