Files
runner-test/.gitea/workflows/auto-trigger-mac.yml
amasson 7a8e29ce57
Some checks failed
Greet on Commit / greet (push) Failing after 12s
Update .gitea/workflows/auto-trigger-mac.yml
2025-11-03 22:18:41 +00:00

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