diff options
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0b8fa4f..c50f2aa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,6 +17,15 @@ commitlint: except: - master +black_lint: + stage: lint + before_script: + - pip3 install black + script: + - black --check . + except: + - master + #build_test_image: # Currently hangs forever, because of GitLab Runner infrastructure issues # stage: build-test-image # image: |
