添加最简单的 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
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:
21
.gitea/workflows/hello-world.yml
Normal file
21
.gitea/workflows/hello-world.yml
Normal 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.
Reference in New Issue
Block a user