Skip to content

Instantly share code, notes, and snippets.

@LumiSage
Created April 19, 2024 15:35
Show Gist options
  • Save LumiSage/f77b659f5eb65b84ad287e2314930c84 to your computer and use it in GitHub Desktop.
Save LumiSage/f77b659f5eb65b84ad287e2314930c84 to your computer and use it in GitHub Desktop.
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!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment