添加最简单的 Hello World 测试工作流
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

This commit is contained in:
ben
2026-02-02 01:55:21 +00:00
parent 28ba094510
commit 6a778c7a42
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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

Binary file not shown.