diff options
| author | Max Wittig <max.wittig95@gmail.com> | 2019-05-16 18:00:34 +0200 |
|---|---|---|
| committer | Max Wittig <max.wittig95@gmail.com> | 2019-05-16 18:03:56 +0200 |
| commit | 318d2770cbc90ae4d33170274e214b9d828bca43 (patch) | |
| tree | c5b6d6d9b57f6642dca83ea33956a4d5ae15e5eb /.gitlab-ci.yml | |
| parent | ef32990347d0ab9145b8919d25269766dc2ce445 (diff) | |
| download | gitlab-318d2770cbc90ae4d33170274e214b9d828bca43.tar.gz | |
refactor: format everything blackrefactor/black
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: |
