codesmidgen/.woodpecker.yaml

19 lines
319 B
YAML
Raw Normal View History

steps:
lint:
image: python:3.11
commands:
- pip install hatch
2023-07-27 23:37:49 +00:00
- hatch run lint:lint
build:
image: python:3.11
commands:
- pip install hatch
- hatch build
deploy:
image: python:3.11
commands:
- pip install hatch
- hatch upload
2023-07-27 23:36:09 +00:00
when:
event: tag