Running yaml formatter on the gitlab-ci file

This commit is contained in:
Luke Robles 2022-02-02 20:00:24 -08:00
parent 1171d62ffb
commit 2b2fbe1f8e

View File

@ -17,19 +17,16 @@ lint_helm:
image: alpine/helm
stage: lint_helm
script:
- echo "Linting Helm chart"
- helm lint ./helm
rules:
- changes:
- helm/*
lint_python:
image: python:alpine
stage: lint_python
script:
- echo "Linting Python code"
- pip install --upgrade -q pip && pip install -q black && black --fast --check .
- pip install -q black && black --fast --check .
rules:
- changes:
- app/*