Add minimal test workflow

This commit is contained in:
rcourtman 2025-11-13 23:45:23 +00:00
parent 3f8c994aa9
commit b650f7e174

16
.github/workflows/test-simple.yml vendored Normal file
View 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 }}"