Skip to content

Instantly share code, notes, and snippets.

View dustin-heckmann's full-sized avatar

Dustin Heckmann dustin-heckmann

View GitHub Profile
@weibeld
weibeld / 01-hello-world.yml
Last active October 16, 2024 21:17
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!"