We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15a35d9 commit 24cf8e8Copy full SHA for 24cf8e8
Taskfile.yml
@@ -50,7 +50,7 @@ tasks:
50
desc: Show versions
51
cmds:
52
- |
53
- set -e
+ set -euo pipefail
54
printf 'git: %s\n' "$(git --version | cut -d ' ' -f 3)"
55
printf 'licensed: %s\n' "$(licensed version)"
56
printf 'ncc: %s\n' "$(ncc version)"
tasks/YamllintTasks.yml
@@ -6,5 +6,5 @@ tasks:
6
lint:
7
desc: Lint YAML files
8
9
- - yamllint --config-file .github/linters/.yaml-lint.yml --format auto --strict .
+ - docker run -it --rm --volume "$(pwd):/work" --workdir /work docker.io/cytopia/yamllint:latest --config-file .github/linters/.yaml-lint.yml --format auto --strict .
10
silent: true
0 commit comments