18 lines
302 B
YAML
18 lines
302 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: tag
|