test/.woodpecker/test.yml

26 lines
370 B
YAML

---
when:
- event: [pull_request, tag]
- event: [push, manual]
branch:
- ${CI_REPO_DEFAULT_BRANCH}
steps:
test_1:
image: "alpine"
commands:
- echo 'Test 1'
- sleep 10
test_2:
image: "alpine"
commands:
- echo 'Test 2'
- sleep 5
test_3:
image: "alpine"
commands:
- echo 'Test 3'
- sleep 5