Skip to content

Instantly share code, notes, and snippets.

@weibeld
weibeld / 01-hello-world.yml
Last active April 22, 2025 22:03
GitHub Actions example workflow 1 — Hello World!
name: hello-world
on: push
jobs:
my-job:
runs-on: ubuntu-latest
steps:
- name: my-step
run: echo "Hello World!"