Some checks failed
Hello World Test / hello (push) Successful in 30s
Simple DSW Build Test / check-env (push) Successful in 3s
Simple DSW Build Test / check-tools (push) Successful in 3s
Simple DSW Build Test / network-test (push) Successful in 6s
Simple DSW Build Test / build-sample (push) Successful in 1s
Simple DSW Build Test / docker-test (push) Successful in 1s
Simple DSW Build Test / stress-test (push) Successful in 3s
Build and Docker Pipeline / build-go-app (push) Failing after 2m53s
Simple DSW Build Test / report (push) Successful in 3s
Build and Docker Pipeline / build-info (push) Failing after 13m42s
Build and Docker Pipeline / build-docker (push) Has been cancelled
Build and Docker Pipeline / cleanup-and-report (push) Has been cancelled
Pure Shell Test / test (push) Has been cancelled
19 lines
390 B
YAML
19 lines
390 B
YAML
name: Pure Shell Test
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu:host
|
|
steps:
|
|
- run: echo "Step 1 - Hello from Runner"
|
|
- run: echo "Step 2 - Current dir is $(pwd)"
|
|
- run: echo "Step 3 - User is $(whoami)"
|
|
- run: echo "Step 4 - Time is $(date)"
|
|
- run: |
|
|
echo "Step 5 - System info"
|
|
uname -a
|