actions-test/.github/workflows/hello-world.yaml
Kenneth Allen 285396375c
All checks were successful
hello-world-example / say-hello (push) Successful in 27s
Switch to Ubuntu runner
2024-02-15 20:04:30 +11:00

21 lines
351 B
YAML

name: hello-world-example
on:
push:
jobs:
say-hello:
runs-on: ubuntu-latest
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!"