13 lines
190 B
YAML
13 lines
190 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: tests
|
||
|
image: python:3.10-slim
|
||
|
commands:
|
||
|
- pip install poetry
|
||
|
- poetry install
|
||
|
- poetry run poe lint
|