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 b178409 commit 0cb65acCopy full SHA for 0cb65ac
.github/workflows/python-tests.yml
@@ -13,11 +13,19 @@ on:
13
required: false
14
type: string
15
default: ''
16
+ python_version:
17
+ description: 'Python version to use'
18
+ required: true
19
+ type: string
20
+ os:
21
+ description: 'Operating system to run on'
22
23
24
25
jobs:
26
test:
27
name: Python
- runs-on: ${{ matrix.os }}
28
+ runs-on: ${{ inputs.os }}
29
defaults:
30
run:
31
shell: bash
@@ -44,7 +52,7 @@ jobs:
44
52
- name: Install uv and set the python version
45
53
uses: astral-sh/setup-uv@v6
46
54
with:
47
- python-version: ${{ matrix.python }}
55
+ python-version: ${{ inputs.python_version }}
48
56
version: "0.8.15"
49
57
50
58
- name: Install dependencies
0 commit comments