aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: b5c6a62f61d1cfe9bae153caefdaa95152e831e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
image: "muhq/python-dev:3.11.0"

before_script:
  - python --version
  - pipenv install --dev

stages:
  - Static Analysis
  - Test

pylint:
  stage: Static Analysis
  script:
    - pipenv run make check-pylint

format:
  stage: Static Analysis
  script:
    - pipenv run make check-format

mypy:
  stage: Static Analysis
  script:
    - pipenv run make check-mypy

test:
  stage: Test
  script:
    - pipenv run make test