We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
os
1 parent 5c783c1 commit abcee73Copy full SHA for abcee73
1 file changed
.github/workflows/python_unit_tests.yaml
@@ -11,14 +11,19 @@ on:
11
description: List of Python versions to be used
12
required: true
13
type: string
14
+ os:
15
+ description: List of operating systems to be used
16
+ default: '["ubuntu-latest", "windows-latest"]'
17
+ required: false
18
+ type: string
19
20
jobs:
21
unit_tests:
22
name: Unit tests
23
strategy:
24
fail-fast: false
25
matrix:
- os: ["ubuntu-latest", "windows-latest"]
26
+ os: ${{ fromJSON(inputs.os)}}
27
python-version: ${{ fromJSON(inputs.python-versions)}}
28
runs-on: ${{ matrix.os }}
29
env:
0 commit comments