Add simple test workflow
All checks were successful
Test Workflow / test (push) Successful in 1s

This commit is contained in:
robojerk 2025-09-09 18:24:03 -07:00
parent bd88b3d2b0
commit e0d9cc0f58

View file

@ -0,0 +1,16 @@
---
name: Test Workflow
on:
push:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Test step
run: |
echo "Hello from test workflow!"
echo "This is a simple test to verify CI is working."