testing/.woodpecker.yml

14 lines
295 B
YAML
Raw Normal View History

2022-01-03 17:08:39 +05:30
# .woodpecker.yml
pipeline:
build:
image: debian
commands:
- echo "This is the build step"
a-test-step:
image: debian
commands:
- echo "Testing.."
2022-03-19 18:40:37 +05:30
- echo "exiting with failure code" && exit -1 # to test if Gitea emails user
2022-01-03 17:11:50 +05:30
branches: [ master, feature/* ]