summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorSven-Hendrik Haase <svenstaro@gmail.com>2020-08-16 23:27:11 +0200
committerSven-Hendrik Haase <svenstaro@gmail.com>2020-08-16 23:27:11 +0200
commit97c2d3ebdc64fbc98b3b5e688a7cd39d3fa35a8c (patch)
tree52a6131a55bf698b6d415eca06b5ec0ad60e9ff9 /.gitlab-ci.yml
parent77be90eefe4bff581612b7d0f57fc4c32051410d (diff)
Remove unnecessary Python linting
Python scripts were removed.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml18
1 files changed, 2 insertions, 16 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5f88fe8..63a6c54 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,28 +11,14 @@ shellcheck:
before_script:
- pacman -Syu --needed --noconfirm shellcheck
script:
- find . -iname "*.sh" -exec shellcheck {} +
+ - find . -iname "*.sh" -exec shellcheck {} +
shfmt:
stage: lint
before_script:
- pacman -Syu --needed --noconfirm shfmt
script:
- find . -iname "*.sh" -exec shfmt -i 2 -ci -d {} +
-
-yapf:
- stage: lint
- before_script:
- - pacman -Syu --needed --noconfirm yapf
- script:
- find . -iname "*.py" -exec python3 -m yapf -d {} +
-
-flake8:
- stage: lint
- before_script:
- - pacman -Syu --needed --noconfirm flake8
- script:
- find . -iname "*.py" -exec python3 -m flake8 {} +
+ - find . -iname "*.sh" -exec shfmt -i 2 -ci -d {} +
validate-packer:
stage: lint