Skip to content

Commit

Permalink
Merge pull request #466 from freemansw1/fix_linting_CI
Browse files Browse the repository at this point in the history
Fix linting syntax error
  • Loading branch information
freemansw1 authored Jan 6, 2025
2 parents be72676 + ddf7f96 commit 0a163ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
id: git

- name: Checkout RC branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.base_ref }}

Expand All @@ -42,12 +42,12 @@ jobs:
id: main_score

- name: Checkout PR branch
uses: actions/checkout@v3
uses: actions/checkout@v4
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 0a163ba

Please sign in to comment.