seminaire-ci/.gitlab-ci.yml
Yohann D'ANELLO 6bd2b3c66c
On exécute le programme
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
2021-01-26 16:50:52 +01:00

28 lines
408 B
YAML

stages:
- linting
- test
flake8:
stage: linting
image: python:3-alpine
before_script:
- pip install flake8 --no-cache-dir
script: flake8 main.py
allow_failure: true
pylint:
stage: linting
image: python:3-alpine
before_script:
- pip install pylint --no-cache-dir
script: pylint main.py
allow_failure: true
test:
stage: test
image: python:3-alpine
script: ./main.py