19 lines
375 B
YAML
19 lines
375 B
YAML
# Test pipeline for yogabook worker verification
|
|
kind: pipeline
|
|
type: docker
|
|
name: yogabook-test
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: hello-world
|
|
image: alpine:latest
|
|
commands:
|
|
- echo "=== YOGABOOK WORKER TEST ==="
|
|
- echo "Hello from yogabook!"
|
|
- uname -a
|
|
- echo "=== TEST COMPLETE ==="
|
|
when:
|
|
branch: test-yogabook
|