aptpkg/.woodpecker.yml

21 lines
456 B
YAML
Raw Normal View History

2022-04-27 18:31:27 -04:00
branches: main # Ideally, only run on pushes to main branch and PRs
pipeline:
pull-request:
image: ubuntu:jammy
when:
event: [ pull_request ]
commands:
- apt -y update
- apt -y install dpkg dpkg-dev scdoc shellcheck
- make test
main:
image: ubuntu:jammy
when:
event: push
branch: main
commands:
- apt -y update
- apt -y install dpkg dpkg-dev scdoc shellcheck
- make test