Files
MarietjeDjango/.gitlab-ci.yml
2019-01-20 22:31:34 +01:00

12 lines
294 B
YAML

before_script:
- apt-get -qq update
- apt-get -qq install -y python3 python3-venv python3-pip
- python3 -m venv venv
- source venv/bin/activate
- pip install -r requirements.txt pylint
pylint:
script:
- pylint marietje metrics playerapi queues songs stats
allow_failure: yes