Skip to content

test: input into matrix #1

test: input into matrix

test: input into matrix #1

Workflow file for this run

name: Trigger Tests

Check failure on line 1 in .github/workflows/trigger.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/trigger.yaml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: namedMatrix
on:
workflow_dispatch: # This allows us to queue from the UI
inputs:
test:
description: "Some string"
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:
namedMatrix:
strategy:
matrix:
version: ${{ inputs.test }}
test:
runs-on: ubuntu-latest
steps:
- name: Setup
shell: bash
run: |
echo "Cool outputs"
echo ${{ matrix.version }}