Trigger Tests #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Trigger Tests | |
on: | |
workflow_dispatch: # This allows us to queue from the UI | |
inputs: | |
test: | |
description: "Json array input" | |
required: true | |
default: '[]' | |
type: string | |
test2: | |
description: 'Boolean Test' | |
required: true | |
default: true | |
type: boolean | |
test3: | |
description: 'breaking test' | |
required: true | |
default: '4th option' | |
type: choice | |
options: | |
- wow | |
- cool | |
- "interesting" | |
jobs: | |
namedJob: | |
strategy: | |
matrix: | |
version: ${{ fromJson(inputs.test) }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup | |
shell: bash | |
run: | | |
echo "Cool outputs" | |
echo ${{ matrix.version }} |