updateMemberOf/.woodpecker.yml

18 lines
810 B
YAML
Raw Normal View History

pipeline:
test-pylint:
group: test
2022-12-17 00:46:33 +01:00
image: brenard/debian-python-deb
commands:
2022-12-17 00:45:42 +01:00
- echo "deb http://debian.zionetrix.net stable main" >> /etc/apt/sources.list
2022-12-17 00:44:41 +01:00
- DEBIAN_FRONTEND=noninteractive apt-get -qq -o Acquire::AllowInsecureRepositories=true -o Acquire::AllowDowngradeToInsecureRepositories=true update < /dev/null > /dev/null
- DEBIAN_FRONTEND=noninteractive apt-get -qq -o APT::Get::AllowUnauthenticated=true install --yes zionetrix-archive-keyring < /dev/null > /dev/null
- DEBIAN_FRONTEND=noninteractive apt-get -qq update < /dev/null > /dev/null
- DEBIAN_FRONTEND=noninteractive apt-get -qq -y install python3-mylib
- pylint updateMemberOf
test-flake8:
group: test
image: pipelinecomponents/flake8
commands:
2022-12-17 00:44:41 +01:00
- flake8 updateMemberOf