16 lines
264 B
Bash
Vendored
16 lines
264 B
Bash
Vendored
#!/bin/sh
|
|
# Copyright (C) Viktor Szakats
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "${0}")"/../..
|
|
|
|
git ls-files '*.yaml' '*.yml' -z | xargs -0 -r \
|
|
yamllint \
|
|
--format standard \
|
|
--strict \
|
|
--config-data .github/scripts/yamlcheck.yaml \
|
|
--
|