19 lines
315 B
YAML
19 lines
315 B
YAML
steps:
|
|
lint:
|
|
image: python:3.11
|
|
commands:
|
|
- pip install hatch
|
|
- hatch lint:lint
|
|
build:
|
|
image: python:3.11
|
|
commands:
|
|
- pip install hatch
|
|
- hatch build
|
|
deploy:
|
|
image: python:3.11
|
|
commands:
|
|
- pip install hatch
|
|
- hatch upload
|
|
when:
|
|
event: tag
|