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 2e87d61 commit 8a697c8Copy full SHA for 8a697c8
.github/workflows/build-golang-ubuntu.yaml
@@ -58,3 +58,4 @@ jobs:
58
uses: ./.github/workflows/platform-integration-test.yaml
59
with:
60
wheel: dist/otdf_python-0.1.10-py3-none-any.whl
61
+ python_version: "3.${{ matrix.python3_version }}"
.github/workflows/platform-integration-test.yaml
@@ -12,6 +12,10 @@ on:
12
description: The Python wheel to test
13
required: true
14
type: string
15
+ python_version:
16
+ description: The wheel's Python version (like "3.12" or "3.13")
17
+ required: true
18
+ type: string
19
20
permissions:
21
contents: read
@@ -112,7 +116,7 @@ jobs:
112
116
- name: Set up Python
113
117
uses: actions/setup-python@v4
114
118
115
- python-version: '3.12'
119
+ python-version: '${{ inputs.python_version }}'
120
121
- name: Validate the Python SDK
122
env:
0 commit comments