16 lines
278 B
YAML
16 lines
278 B
YAML
---
|
|
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."
|