We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bb27ad commit 573a7fbCopy full SHA for 573a7fb
1 file changed
.github/workflows/dev_module_build.yml
@@ -190,10 +190,18 @@ jobs:
190
- name: Lint all directories with golangci-lint
191
shell: bash
192
run: |
193
- set -eo pipefail
+ # set -eo pipefail
194
+ set -e
195
196
# Find directories containing .golangci.yaml
- mapfile -t config_dirs < <(find . -type f -name '.golangci.yaml' -printf '%h\0' | xargs -0 -n1 | sort -u)
197
+ mapfile -t config_dirs < <(
198
+ find . \
199
+ -path ./images/cdi-cloner/cloner-startup -prune -o \
200
+ -path ./images/dvcr-artifact -prune -o \
201
+ -path ./test/shatal -prune -o \
202
+ -type f -name '.golangci.yaml' -printf '%h\0' | \
203
+ xargs -0 -n1 | sort -u
204
+ )
205
count=${#config_dirs[@]}
206
echo "::notice title=Lint Setup::🔍 Found $count directories with linter configurations"
207
0 commit comments