diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 460dee26..16dd06f5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -267,3 +267,11 @@ jobs: echo "No trailing spaces found." true fi + + - name: DEV noqa via tmp file + if: (success() || failure()) && steps.filter.outputs.any == 'true' + run: | + TMP_FIND_NOQA_COMMENTS=$(shell mktemp /tmp/find_noqa_comments.XXXXXX); \ + echo TMP_FIND_NOQA_COMMENTS || true; \ + echo $TMP_FIND_NOQA_COMMENTS || true; \ + echo $$TMP_FIND_NOQA_COMMENTS || true; \