We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7c507f commit 8d3a08eCopy full SHA for 8d3a08e
.github/workflows/ci-python.yml
@@ -80,12 +80,19 @@ jobs:
80
fail-fast: false
81
matrix:
82
include:
83
- - os: ubuntu
84
- - os: macos
+ - python-version: '3.10'
+ os: ubuntu
85
86
+ os: macos
87
+ - python-version: '3.13'
88
89
90
91
with:
- name: Unit Tests (${{ matrix.os }})
92
+ name: Unit Tests (${{ matrix.python-version }}, ${{ matrix.os }})
93
os: ${{ matrix.os }}
- cache-key: python-unit-test-${{ matrix.os }}
94
+ python-version: ${{ matrix.python-version }}
95
+ cache-key: python-unit-test-${{ matrix.python-version }}
96
run: |
97
bazel test //py:unit
98
0 commit comments