From b3b9b561669d1e0336be02fc0f842ddeab71e0bb Mon Sep 17 00:00:00 2001 From: Casper Welzel Andersen Date: Sat, 12 Oct 2024 15:11:18 +0200 Subject: [PATCH] Try to fix setting the Python version --- .github/workflows/ci_tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index 6ba49c5..6aa7197 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -8,7 +8,7 @@ on: - 'push-action/**' env: - PYTHON_VERSION: 3.10 + PYTHON_VERSION: "3.10" jobs: @@ -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: | @@ -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: | @@ -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