summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: 04a9fb7185f0412f6dbf8c51d9c67c3ca796e803 (plain) (tree)
1
2
3
4
5
6
7
8
9

        





                                      
                      





                                     
                      
 
stages:
  - test

pyflakes2:
  stage: test
  script:
  - ./ci/install.sh python2.7 pyflakes
  - pyflakes .
  image: debian:buster

.pyflakes3:
  stage: test
  script:
  - ./ci/install.sh python3 pyflakes3
  - pyflakes3 .
  image: debian:stable