Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit 1f937d0

Browse files
committed
update syntax
1 parent c8e71e8 commit 1f937d0

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/tests.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -177,10 +177,10 @@ jobs:
177177
runs-on: ubuntu-22.04
178178
steps:
179179
- uses: actions/checkout@v4
180-
- name: Set up Python "${{ matrix.python }}"
180+
- name: Set up Python ${{ matrix.python }}
181181
uses: actions/setup-python@v5
182182
with:
183-
python-version: "${{ matrix.python }}"
183+
python-version: ${{ matrix.python }}
184184
cache: 'pip'
185185
- name: Install system dependencies.
186186
run: |
@@ -208,7 +208,7 @@ jobs:
208208
- name: Set up Python ${NEWEST_STABLE_PYTHON}
209209
uses: actions/setup-python@v5
210210
with:
211-
python-version: "${NEWEST_STABLE_PYTHON}"
211+
python-version: ${NEWEST_STABLE_PYTHON}
212212
cache: 'pip'
213213
- name: Install system dependencies.
214214
run: |
@@ -236,7 +236,7 @@ jobs:
236236
- name: Set up Python ${NEWEST_STABLE_PYTHON}
237237
uses: actions/setup-python@v5
238238
with:
239-
python-version: "${NEWEST_STABLE_PYTHON}"
239+
python-version: ${NEWEST_STABLE_PYTHON}
240240
cache: 'pip'
241241
- name: Install system dependencies.
242242
run: |
@@ -261,7 +261,7 @@ jobs:
261261
- name: Set up Python ${NEWEST_STABLE_PYTHON}
262262
uses: actions/setup-python@v5
263263
with:
264-
python-version: "${NEWEST_STABLE_PYTHON}"
264+
python-version: ${NEWEST_STABLE_PYTHON}
265265
cache: 'pip'
266266
- name: Install system dependencies.
267267
run: |
@@ -373,10 +373,10 @@ jobs:
373373
runs-on: ubuntu-latest
374374
steps:
375375
- uses: actions/checkout@v4
376-
- name: Set up Python "${NEWEST_STABLE_PYTHON}"
376+
- name: Set up Python ${NEWEST_STABLE_PYTHON}
377377
uses: actions/setup-python@v5
378378
with:
379-
python-version: "${NEWEST_STABLE_PYTHON}"
379+
python-version: ${NEWEST_STABLE_PYTHON}
380380
cache: 'pip'
381381
- name: Install nox.
382382
run: |
@@ -397,7 +397,7 @@ jobs:
397397
- name: Set up Python ${PRERELEASE_PYTHON}
398398
uses: actions/setup-python@v5
399399
with:
400-
python-version: "${PRERELEASE_PYTHON}"
400+
python-version: ${PRERELEASE_PYTHON}
401401
cache: 'pip'
402402
- name: Install nox.
403403
run: |
@@ -415,10 +415,10 @@ jobs:
415415
runs-on: ubuntu-latest
416416
steps:
417417
- uses: actions/checkout@v4
418-
- name: Set up Python "${NEWEST_STABLE_PYTHON}"
418+
- name: Set up Python ${NEWEST_STABLE_PYTHON}
419419
uses: actions/setup-python@v5
420420
with:
421-
python-version: "${NEWEST_STABLE_PYTHON}"
421+
python-version: ${NEWEST_STABLE_PYTHON}
422422
cache: 'pip'
423423
- name: Install nox.
424424
run: |

0 commit comments

Comments
 (0)