Skip to content

Commit

Permalink
ci(test): fix python-version
Browse files Browse the repository at this point in the history
  • Loading branch information
kod-kristoff committed Sep 16, 2024
1 parent 0a9d5c1 commit 15b3c7d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,11 @@ jobs:
- name: Set up uv
run: curl -LsSf https://astral.sh/uv/${{ env.UV_VERSION }}/install.sh | sh

- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python ${{ env.MINIMUM_PYTHON_VERSION }}
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ env.MINIMUM_PYTHON_VERSION }}

- name: Restore uv cache
uses: actions/cache@v4
Expand Down Expand Up @@ -184,11 +184,11 @@ jobs:
- name: Set up uv
run: curl -LsSf https://astral.sh/uv/${{ env.UV_VERSION }}/install.sh | sh

- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python ${{ env.MINIMUM_PYTHON_VERSION }}
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ env.MINIMUM_PYTHON_VERSION }}

- name: Restore uv cache
uses: actions/cache@v4
Expand Down

0 comments on commit 15b3c7d

Please sign in to comment.