summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 1e1b6ff716e84bf294564b510399bfca507dfdba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
image: python

before_script:
  - pip install tox

flake8:
  script: tox -e flake8

py3:
  script: tox -e py3

check-manifest:
  script: tox -e check-manifest

black:
  script: tox -e black

mypy:
  script: tox -e mypy