testing/.woodpecker.yml

14 lines
295 B
YAML

# .woodpecker.yml
pipeline:
build:
image: debian
commands:
- echo "This is the build step"
a-test-step:
image: debian
commands:
- echo "Testing.."
- echo "exiting with failure code" && exit -1 # to test if Gitea emails user
branches: [ master, feature/* ]