Skip to content

Commit 032438a

Browse files
committed
we want to test it like this
1 parent 87e8743 commit 032438a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/api-test-lint-deploy.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ jobs:
133133
strategy:
134134
matrix:
135135
os: ['ubuntu-24.04', 'macos-latest', 'windows-2022']
136+
python: ['3.10', '3.11', '3.12', '3.13']
136137
runs-on: '${{ matrix.os }}'
137138
steps:
138139
- uses: 'actions/checkout@v4'
@@ -143,7 +144,7 @@ jobs:
143144
git checkout ${{ github.ref }}
144145
- uses: 'actions/setup-python@v4'
145146
with:
146-
python-version: '3.12'
147+
python-version: ${{matrix.python}}
147148
- name: Set up package-testing
148149
id: setup
149150
if: ${{ matrix.os != 'windows-2022' }}
@@ -172,7 +173,7 @@ jobs:
172173
id: results
173174
uses: actions/upload-artifact@v4
174175
with:
175-
name: package-test-results-${{ matrix.os }}
176+
name: package-test-results-${{ matrix.os }}-${{ matrix.python }}
176177
path: package-testing/results
177178
- name: Set job summary
178179
if: ${{ always() }}

0 commit comments

Comments
 (0)