We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbe42ee commit 75e02d8Copy full SHA for 75e02d8
1 file changed
.github/workflows/build-python-package.yml
@@ -2,6 +2,12 @@ name: Reusable workflow to build Python package
2
3
on:
4
workflow_call:
5
+ inputs:
6
+ python-versions:
7
+ description: 'List of Python versions to test'
8
+ required: true
9
+ type: array
10
+ default: ["3.11", "3.12", "3.13"]
11
secrets:
12
anaconda-token:
13
description: 'Anaconda token'
@@ -14,7 +20,7 @@ jobs:
14
20
strategy:
15
21
matrix:
16
22
os: [ubuntu-latest, macos-latest, windows-latest]
17
- python-version: ["3.11", "3.12", "3.13"]
23
+ python-version: ${{ inputs.python-versions }}
18
24
19
25
steps:
26
- uses: actions/checkout@v4
0 commit comments