18 lines
No EOL
279 B
YAML
18 lines
No EOL
279 B
YAML
name: Demo
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Output Hello
|
|
run: echo "The workflow is running successfully" |