From 1e72198868a6602bd4d34351fbb83d3f9b914e2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Le=20Bihan?= Date: Sun, 23 May 2021 19:39:37 +0200 Subject: [PATCH] final tests --- .github/workflows/codingstyle.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codingstyle.yml b/.github/workflows/codingstyle.yml index 8f64653f..30e21ca7 100644 --- a/.github/workflows/codingstyle.yml +++ b/.github/workflows/codingstyle.yml @@ -7,9 +7,15 @@ jobs: steps: - name: Checkout uses: actions/checkout@v1 + - name: Install cpplint + run: pip install cpplint + - name: Check coding style + run: | + cpplint --recursive --quiet --verbose=3 . 2> tmp - name: Comment Pull Request uses: thollander/actions-comment-pull-request@1.0.1 + if: ${{ failure() && github.event_name == 'pull_request' }} with: - message: 'Example of message !' + message: ${{ cat tmp }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file