From d45f7673dc3e2749d80dbf4f41925503dc8410e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Le=20Bihan?= Date: Sun, 23 May 2021 20:48:35 +0200 Subject: [PATCH] check if blank --- .github/workflows/codingstyle.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/codingstyle.yml b/.github/workflows/codingstyle.yml index 13263512..a9e72a1a 100644 --- a/.github/workflows/codingstyle.yml +++ b/.github/workflows/codingstyle.yml @@ -11,6 +11,8 @@ jobs: - name: Check coding style run: | cpplint --recursive --quiet --verbose=3 . 2> tmp + cat tmp + ls >> tmp echo "CPP_LINT_LOG=$(cat tmp)" >> $GITHUB_ENV - name: Comment PR if: ${{ failure() && github.event_name == 'pull_request' }}