Adding workflow-dispatch for testing

This commit is contained in:
Matthew Johnson (MSRC) 2022-08-23 15:20:01 +01:00
Родитель c95045f3ec
Коммит d8336ac17a
3 изменённых файлов: 21 добавлений и 0 удалений

7
.github/workflows/linux.yml поставляемый
Просмотреть файл

@ -6,6 +6,13 @@ on:
vmImage:
required: true
type: string
workflow_dispatch:
inputs:
vmImage:
description: VM Image to use
required: true
type: string
default: ubuntu-latest
jobs:
LinuxPython:

7
.github/workflows/mac.yml поставляемый
Просмотреть файл

@ -6,6 +6,13 @@ on:
vmImage:
required: true
type: string
workflow_dispatch:
inputs:
vmImage:
description: VM Image to use
required: true
type: string
default: macOS-latest
jobs:
MacPython:

7
.github/workflows/windows.yml поставляемый
Просмотреть файл

@ -6,6 +6,13 @@ on:
vmImage:
required: true
type: string
workflow_dispatch:
inputs:
vmImage:
description: VM Image to use
required: true
type: string
default: windows-latest
jobs:
WindowsPython: