Add minimal test workflow
This commit is contained in:
parent
3f8c994aa9
commit
b650f7e174
1 changed files with 16 additions and 0 deletions
16
.github/workflows/test-simple.yml
vendored
Normal file
16
.github/workflows/test-simple.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
name: Test Simple Workflow
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
test:
|
||||||
|
description: 'Test'
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Echo
|
||||||
|
run: echo "Test input: ${{ inputs.test }}"
|
||||||
Loading…
Reference in a new issue