25 lines
389 B
YAML
25 lines
389 B
YAML
name: Greet on Commit
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
greet:
|
|
runs-on: macos
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Say Hello
|
|
run: |
|
|
for ((i = 0; i < 10; i++)); do
|
|
echo "Hello, World!"
|
|
done
|
|
shell: bash
|
|
|
|
- name: Print Env
|
|
run: |
|
|
whoami;pwd;whoami;env
|
|
shell: bash
|