You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
533 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: flake8
image: python:3-alpine
depends_on:
- clone
commands:
- pip install -r requirements-dev.txt
- flake8 breadbot
- name: isort
image: python:3-alpine
depends_on:
- clone
commands:
- pip install -r requirements-dev.txt
- isort --check --diff breadbot
- name: mypy
image: python:3-alpine
depends_on:
- clone
commands:
- pip install -r requirements-dev.txt
- mypy breadbot