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

before_script:
  - apt update -qy
  - apt install pipenv -qy
  - pipenv --version

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

test_python:
  script:
    - make deps
    - make test-readme
    - make lint