Skip to content

Commit

Permalink
Update lint_cehck.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
PraveenPenguin authored May 14, 2024
1 parent 988256a commit c7ddd79
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/lint_cehck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,13 @@ jobs:
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- name : variable
run: |
echo $(git rev-list ${{github.event.before}}...${{github.event.after}})
- name: Analysing the code with pylint
run: |
inspekt checkall --disable-lint W,R,C,E1002,E1101,E1103,E1120,F0401,I0011,E0203,E711,W605,E721 --no-license-check
inspekt indent
inspekt style
error=""
for COMMIT in $(git rev-list ${{github.event.before}}...${{github.event.after}}); do
for COMMIT in $(git rev-list ${{ github.event.pull_request.commits }}); do
echo "-----< $(git log -1 --oneline $COMMIT) >-----"
msg=$(git show -s --format=%B $COMMIT)
# Skip merge commits
Expand Down

0 comments on commit c7ddd79

Please sign in to comment.