mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
24 lines
411 B
YAML
24 lines
411 B
YAML
########################################
|
|
# LINTER
|
|
########################################
|
|
|
|
lint:
|
|
stage: lint
|
|
image: "before-install"
|
|
needs: []
|
|
allow_failure: true
|
|
script:
|
|
- tox -e lint
|
|
|
|
invalidcode:
|
|
stage: lint
|
|
image: "before-install"
|
|
needs: []
|
|
script:
|
|
- tox -e invalidcode
|
|
|
|
# Disabled, waiting for buster
|
|
#format-check:
|
|
# extends: .lint-stage
|
|
# script:
|
|
# - black --check --diff
|