Skip to content

Commit 10a38fd

Browse files
oprypincopybara-github
authored andcommitted
CI: Add a Python version to the matrix to not confuse Copybara checks
PiperOrigin-RevId: 649323809
1 parent ad94b79 commit 10a38fd

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,16 @@ jobs:
6161
github.repository
6262

6363
runs-on: ubuntu-latest
64+
strategy:
65+
matrix:
66+
python-version: ["3.12"]
6467
steps:
6568
- uses: actions/checkout@v4
6669

67-
- name: Set up Python
70+
- name: Set up Python ${{ matrix.python-version }}
6871
uses: actions/setup-python@v5
6972
with:
70-
python-version: "3.12"
73+
python-version: ${{ matrix.python-version }}
7174
- name: Install dependencies
7275
run: pip install -U mypy
7376

0 commit comments

Comments
 (0)