Skip to content

Commit

Permalink
Test mktemp
Browse files Browse the repository at this point in the history
  • Loading branch information
mepland committed Jun 12, 2024
1 parent e1362d5 commit e15e040
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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; \

0 comments on commit e15e040

Please sign in to comment.