summaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: eeb02e0671ddf39e66c09ba376a080ab299e4abc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
image: "ubuntu:focal"

before_script:
  - apt install pipenv
  - pipenv --version

variables:
  LC_ALL: "C.UTF-8"
  LANG: "C.UTF-8"
  PIPENV_VENV_IN_PROJECT: "true"

test_python:
  script:
    - make dep
    - make test
    - make lint