Skip to content

Commit 1875012

Browse files
Update lint_cehck.yml
1 parent c7ddd79 commit 1875012

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/lint_cehck.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,15 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
pip install -r requirements-travis.txt
25-
- name: List files in the repository
26-
run: |
27-
ls ${{ github.workspace }}
2825
- name: Analysing the code with pylint
2926
run: |
3027
inspekt checkall --disable-lint W,R,C,E1002,E1101,E1103,E1120,F0401,I0011,E0203,E711,W605,E721 --no-license-check
3128
inspekt indent
3229
inspekt style
33-
error=""
34-
for COMMIT in $(git rev-list ${{ github.event.pull_request.commits }}); do
30+
- name: Analysing commit message
31+
run: |
32+
error=""
33+
for COMMIT in $(git rev-list ${github.event.pull_request.commits}); do
3534
echo "-----< $(git log -1 --oneline $COMMIT) >-----"
3635
msg=$(git show -s --format=%B $COMMIT)
3736
# Skip merge commits

0 commit comments

Comments
 (0)