mirror of
https://gitlab.com/sspaeth/cleanmedia.git
synced 2025-04-03 18:30:48 +00:00
20 lines
No EOL
479 B
YAML
20 lines
No EOL
479 B
YAML
image: python:3-alpine
|
|
|
|
# Also run CI for Merge requests
|
|
workflow:
|
|
rules:
|
|
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
|
- if: $CI_COMMIT_TAG
|
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
|
|
before_script:
|
|
# - python --version ; pip --version # For debugging
|
|
- pip install flake8 -qq
|
|
- pip install mypy -qq
|
|
- pip install types-PyYAML types-psycopg2 -qq
|
|
|
|
test:
|
|
script:
|
|
# ignore long lines
|
|
- flake8 --ignore=E501 cleanmedia
|
|
- mypy cleanmedia |