k1x-mesa3d/.gitlab-ci/run-yamllint.sh
2024-03-01 16:33:58 +08:00

5 lines
164 B
Bash
Executable file

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