ci: fix invalid yaml

This commit is contained in:
Sandro Jäckel 2021-01-15 11:30:40 +01:00
parent cfbef2aedb
commit bd7347b42c
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -13,7 +13,8 @@ jobs:
- stage: test
script:
# Travis gets rate limited by Docker HUB.
- [[ -n $DOCKER_PASSWORD && -n $DOCKER_USERNAME ]] && echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- |
[[ -n $DOCKER_PASSWORD && -n $DOCKER_USERNAME ]] && echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- git ls-files --exclude='*Dockerfile' --ignored | xargs --max-lines=1 -I{} sh -c 'docker run --rm -i -v ${PWD}/.hadolint.yaml:/.hadolint.yaml hadolint/hadolint < "$1"' -- {}
- bash -c 'shopt -s globstar; shellcheck **/*.sh'