From b931c691f76f3427c03ddd076e9dfb14237d6b83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juanjo=20Baz=C3=A1n?= Date: Tue, 27 Feb 2024 13:26:32 +0100 Subject: [PATCH] Update paper-checks.yml --- .github/workflows/paper-checks.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/paper-checks.yml b/.github/workflows/paper-checks.yml index 6e90aa6..0e4a250 100644 --- a/.github/workflows/paper-checks.yml +++ b/.github/workflows/paper-checks.yml @@ -28,7 +28,9 @@ jobs: with: repository: ${{ github.event.inputs.repository }} - name: CLOC - run: cloc --quiet ${{ github.action_path }} > cloc-results.txt + run: | + apk add --no-cache --update cloc + cloc --quiet --report-file=cloc-results.txt ${{ github.action_path }} - name: Post results run: gh issue comment ${{ github.event.inputs.issue_id }} --body-file cloc-results.txt env: