Skip to content

Commit

Permalink
fix linting syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
freemansw1 committed Nov 8, 2024
1 parent 706b3ee commit dd83955
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit dd83955

Please sign in to comment.