Add hello world action

This commit is contained in:
Kenneth Allen 2024-02-15 19:57:52 +11:00
commit 6026938c77

20
.github/workflows/hello-world.yaml vendored Normal file
View File

@ -0,0 +1,20 @@
name: hello-world-example
on:
push:
jobs:
say-hello:
runs-on: alpine
steps:
-
name: Say Hello
run: echo "Hello world!"
-
name: Do stuff
run: |
echo "Step 1..."
echo "Step 2..."
echo "Step 3..."
-
name: Say Goodbye
run: echo "Goodbye!"