Skip to content

Commit

Permalink
Try to fix setting the Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
CasperWA committed Oct 12, 2024
1 parent 5b0f9a0 commit b3b9b56
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- 'push-action/**'

env:
PYTHON_VERSION: 3.10
PYTHON_VERSION: "3.10"

jobs:

Expand All @@ -20,7 +20,7 @@ jobs:
- name: Setup Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: '${{ env.PYTHON_VERSION }}'
python-version: ${{ env.PYTHON_VERSION }}

- name: Install Python dependencies
run: |
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Setup Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: '${{ env.PYTHON_VERSION }}'
python-version: ${{ env.PYTHON_VERSION }}

- name: Install Python dependencies
run: |
Expand Down Expand Up @@ -257,10 +257,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Python 3.7
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: "3.7"
python-version: ${{ env.PYTHON_VERSION }}

- name: Run action to retrieve output
id: action
Expand Down

0 comments on commit b3b9b56

Please # to comment.