python/.woodpecker/build.yml
RealStickman aff5a109cf
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/push/deploy unknown status
ci/woodpecker/push/linting Pipeline failed
Add linting pipeline. Add status badge
2022-09-12 17:31:22 +02:00

15 lines
278 B
YAML

pipeline:
build:
image: python:latest
commands:
- python --version
- pip install -U virtualenv --quiet
- virtualenv venv
- source venv/bin/activate
- pip install -U build --quiet
- build
when:
event: tag
branch: [main, master]