From d0304bd482e389396d81ed98362a59d9eb6e27c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Le=20Bihan?= Date: Sun, 23 May 2021 20:58:56 +0200 Subject: [PATCH] should finally work fine --- .github/workflows/codingstyle.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/codingstyle.yml b/.github/workflows/codingstyle.yml index a9e72a1a..3a02fb4b 100644 --- a/.github/workflows/codingstyle.yml +++ b/.github/workflows/codingstyle.yml @@ -10,10 +10,7 @@ jobs: run: pip install cpplint - name: Check coding style run: | - cpplint --recursive --quiet --verbose=3 . 2> tmp - cat tmp - ls >> tmp - echo "CPP_LINT_LOG=$(cat tmp)" >> $GITHUB_ENV + cpplint --recursive --quiet --verbose=3 . 2> tmp || (echo "CPP_LINT_LOG=$(cat tmp)" >> $GITHUB_ENV && false) - name: Comment PR if: ${{ failure() && github.event_name == 'pull_request' }} uses: thollander/actions-comment-pull-request@master