Skip to content
Snippets Groups Projects

Tests

Merged Prada Sarasola, Miguel requested to merge tests into master
.gitlab-ci.yml 0 → 100644
+ 18
0
shellcheck:
image: koalaman/shellcheck-alpine
script: 'shellcheck deploy/base/ros_entrypoint.bash scripts/*sh'
allow_failure: yes
dockerfiles:
image: hadolint/hadolint:latest-debian
script:
- RET=0
- hadolint deploy/base/Dockerfile || RET=1
- hadolint deploy/dev/Dockerfile || RET=1
- exit $RET
allow_failure: yes
yamllint:
image: sdesbure/yamllint
script: "yamllint $(find . \\( -name '*.yml' -o -name '*.yaml' \\))"
allow_failure: yes
Loading