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

Commit c88a268

Browse files
committed
update syntax
1 parent 1f937d0 commit c88a268

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/tests.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Set up Python
4343
uses: actions/setup-python@v5
4444
with:
45-
python-version: "${DOCS_PYTHON}"
45+
python-version: ${DOCS_PYTHON}
4646
cache: 'pip'
4747
- name: Install nox.
4848
run: python -m pip install nox
@@ -61,10 +61,10 @@ jobs:
6161
runs-on: ubuntu-latest
6262
steps:
6363
- uses: actions/checkout@v4
64-
- name: Set up Python "${{ matrix.python }}"
64+
- name: Set up Python ${{ matrix.python }}
6565
uses: actions/setup-python@v5
6666
with:
67-
python-version: "${{ matrix.python }}"
67+
python-version: ${{ matrix.python }}
6868
cache: 'pip'
6969
- name: Install nox.
7070
run: python -m pip install nox
@@ -75,7 +75,7 @@ jobs:
7575
# Run showcase tests on the lowest and highest supported runtimes
7676
matrix:
7777
# TODO(https://github.com/googleapis/gapic-generator-python/issues/2121) Remove `showcase_w_rest_async` target when async rest is GA.
78-
python: ["${OLDEST_PYTHON}", "${NEWEST_STABLE_PYTHON}"]
78+
python: [${OLDEST_PYTHON}, ${NEWEST_STABLE_PYTHON}]
7979
target: [showcase, showcase_w_rest_async]
8080
logging_scope: ["", "google"]
8181

@@ -84,10 +84,10 @@ jobs:
8484
runs-on: ubuntu-22.04
8585
steps:
8686
- uses: actions/checkout@v4
87-
- name: Set up Python "${{ matrix.python }}"
87+
- name: Set up Python ${{ matrix.python }}
8888
uses: actions/setup-python@v5
8989
with:
90-
python-version: "${{ matrix.python }}"
90+
python-version: ${{ matrix.python }}
9191
cache: 'pip'
9292
- name: Install system dependencies.
9393
run: |
@@ -133,7 +133,7 @@ jobs:
133133
- name: Set up Python ${NEWEST_STABLE_PYTHON}
134134
uses: actions/setup-python@v5
135135
with:
136-
python-version: "${NEWEST_STABLE_PYTHON}"
136+
python-version: ${NEWEST_STABLE_PYTHON}
137137
cache: 'pip'
138138
- name: Copy mtls files
139139
run: cp tests/cert/mtls.* /tmp/workspace/tests/cert/

0 commit comments

Comments
 (0)