Skip to content

Commit b650f7e

Browse files
committed
Add minimal test workflow
1 parent 3f8c994 commit b650f7e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/test-simple.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Test Simple Workflow
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
test:
7+
description: 'Test'
8+
required: false
9+
type: string
10+
11+
jobs:
12+
test:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Echo
16+
run: echo "Test input: ${{ inputs.test }}"

0 commit comments

Comments
 (0)