codesmidgen/.woodpecker.yaml

19 lines
318 B
YAML
Raw Normal View History

steps:
lint:
image: python:3.11
commands:
- pip install hatch
- hatch lint:lint
build:
image: python:3.11
commands:
- pip install hatch
- hatch build
# when: tag
deploy:
image: python:3.11
commands:
- pip install hatch
- hatch upload
when: tag