From ddb1ed7ffcff6c8b48458dad64816f22d59fad76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Le=20Bihan?= Date: Sun, 23 May 2021 19:28:25 +0200 Subject: [PATCH] fix ci (base exemple) --- .github/workflows/codingstyle.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/codingstyle.yml b/.github/workflows/codingstyle.yml index 62706689..932a482d 100644 --- a/.github/workflows/codingstyle.yml +++ b/.github/workflows/codingstyle.yml @@ -5,15 +5,11 @@ jobs: Building: runs-on: [ubuntu-latest] steps: - - uses: actions/checkout@v1 - - name: Install cpplint - run: pip install cpplint - - name: Run cpplint - 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' }} + - name: Checkout + uses: actions/checkout@v1 + + - name: Comment PR + uses: thollander/actions-comment-pull-request@master with: - message: '${{ cat tmp }}' + message: 'Example of message !' GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file