From e15e0400048b126840a1c6d62313b44245516de8 Mon Sep 17 00:00:00 2001 From: Matthew Epland Date: Tue, 11 Jun 2024 22:47:18 -0400 Subject: [PATCH] Test mktemp --- .github/workflows/tests.yml | 8 ++++++++ 1 file changed, 8 insertions(+) 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; \