Woodpecker CI
Woodpecker uses docker containers to execute pipeline steps.
.woodpecker/build.yaml
steps:
- name: build image: debian:stable-slim commands:
- echo building
- sleep 5
.woodpecker/deploy.yaml
steps:
- name: deploy image: debian:stable-slim commands:
- echo deploying
depends_on:
- lint
- build
- test
.woodpecker/test.yaml
steps:
- name: test image: debian:stable-slim commands:
- echo testing
- sleep 5
depends_on:
- build
.woodpecker/lint.yaml
steps:
- name: lint image: debian:stable-slim commands:
- echo linting
- sleep 5