mirror of
https://github.com/ibiqlik/action-yamllint.git
synced 2024-11-23 10:09:33 +01:00
7 lines
155 B
Bash
7 lines
155 B
Bash
#!/bin/sh -l
|
|
|
|
if [ ! -z $INPUT_STRICT ]; then
|
|
STRICT="-s"
|
|
fi
|
|
|
|
yamllint $INPUT_CONFIG_FILE $INPUT_CONFIG_DATA $INPUT_FORMAT $STRICT $INPUT_FILE_OR_DIR
|