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
22 lines
408 B
YAML
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
|