Skip to content

Instantly share code, notes, and snippets.

@LumiSage
LumiSage / hello-world.yml
Created April 19, 2024 15:35
GitHub Actions workflow example : Run Hello World!
name: hello-world
'on': push
jobs:
hello-world-job:
runs-on: ubuntu-latest
steps:
- name: my-step
run: echo "Hello World!"