From dd83955e41a8cb0bce1bf0d1150356477d18c1a7 Mon Sep 17 00:00:00 2001 From: Sean Freeman Date: Fri, 8 Nov 2024 14:20:43 -0600 Subject: [PATCH] fix linting syntax error --- .github/workflows/pylint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 1fb1318b..a580b520 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -44,10 +44,10 @@ jobs: - name: Checkout PR branch uses: actions/checkout@v3 with: - ref: "${{ steps.git.outputs.SHA }}" + ref: ${{ steps.git.outputs.SHA }} - name: Get pylint score of PR branch - run: + run: | # use shell script to save only tail of output OUTPUT_PART=$(pylint tobac --disable=C --exit-zero | tail -n 2) # but post entire output in the action details