kind: pipeline name: default type: docker steps: - name: lint image: python:3.10 commands: - pip install poetry - poetry install - poetry run flake8 . - poetry run mypy . - name: docker image: plugins/docker settings: repo: xefir/dl auto_tag: true username: from_secret: docker_username password: from_secret: docker_password