Files
modelscope/.gitea/workflows/hello-world.yml
ben 6a778c7a42
Some checks failed
Simple DSW Build Test / check-env (push) Waiting to run
Simple DSW Build Test / check-tools (push) Blocked by required conditions
Simple DSW Build Test / network-test (push) Blocked by required conditions
Simple DSW Build Test / build-sample (push) Blocked by required conditions
Simple DSW Build Test / docker-test (push) Blocked by required conditions
Simple DSW Build Test / stress-test (push) Blocked by required conditions
Simple DSW Build Test / report (push) Blocked by required conditions
Build and Docker Pipeline / build-info (push) Successful in 51s
Build and Docker Pipeline / build-go-app (push) Has been cancelled
Build and Docker Pipeline / build-docker (push) Has been cancelled
Build and Docker Pipeline / cleanup-and-report (push) Has been cancelled
Hello World Test / hello (push) Has been cancelled
添加最简单的 Hello World 测试工作流
2026-02-02 01:55:21 +00:00

22 lines
408 B
YAML

name: Hello World Test
on:
push:
branches: [main]
workflow_dispatch:
jobs:
hello:
runs-on: ubuntu
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Say Hello
run: |
echo "Hello from DSW Runner!"
echo "Current time: $(date)"
echo "Hostname: $(hostname)"
echo "Working directory: $(pwd)"
ls -la