You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
446 B
23 lines
446 B
kind: pipeline |
|
name: default |
|
type: docker |
|
|
|
steps: |
|
- name: lint |
|
image: python:3.8-slim |
|
commands: |
|
- pip install poetry |
|
- poetry install |
|
- poetry run flake8 |
|
- poetry run mypy . |
|
- poetry run djlint . |
|
|
|
- name: docker |
|
image: plugins/docker |
|
settings: |
|
repo: xefir/divent |
|
auto_tag: true |
|
username: |
|
from_secret: docker_username |
|
password: |
|
from_secret: docker_password
|
|
|