summaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: 8e12c5e792a51930c4e27677395898750d489e15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
test:
  stage: test
  image: docker.io/python:alpine
  before_script:
    - pip install pyflakes mypy
    - pip install -r requirements.txt
  script:
    - mypy accounts
    - pyflakes accounts
  tags:
    - macht-jbb-arm
    - x86_64