summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: ace10a04c3c657f57b12260ed3986a59adfdc529 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
stages:
  - build
  - static-analysis
  - test

build:
  stage: build
  script:
    - apt-get update -qy
    - apt-get install -y python-dev python-pip
    - python --version
    - python setup.py install

static-analysis:
  stage: static-analysis
  allow_failure: true
  script:
    - pylint opendc

test:
  stage: test
  script:
    - pytest