Skip to content

Commit 690ed38

Browse files
committed
test
1 parent db92235 commit 690ed38

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,16 @@ on:
1919
default: ''
2020
required: false
2121
type: string
22+
os:
23+
description: os to use in the run
24+
type: choice
25+
options:
26+
- '["ubuntu-latest"]'
27+
- '["windows-latest"]'
28+
- '["macos-latest"]'
29+
- '["ubuntu-latest", "macos-latest", "windows-latest"]'
30+
default: '["ubuntu-latest", "macos-latest", "windows-latest"]'
31+
required: true
2232

2333
jobs:
2434
build:
@@ -28,7 +38,7 @@ jobs:
2838
strategy:
2939
fail-fast: false
3040
matrix:
31-
os: [ ubuntu-latest, macos-latest, windows-latest ]
41+
os: ${{ fromJson(inputs.os) }} # [ ubuntu-latest, macos-latest, windows-latest ]
3242

3343

3444
steps:

0 commit comments

Comments
 (0)