Files
mesa/.gitlab-ci/run-yamllint.sh
2022-09-13 09:16:19 +00:00

6 lines
157 B
Bash
Executable File

#!/usr/bin/env bash
set -e
# Run yamllint against all traces files.
find . -name '*traces*yml' -exec yamllint -d "{rules: {line-length: {max: 150}}}" {} \;