Skip to content

Commit ccc917d

Browse files
authored
Merge pull request #1 from davevelasco/add-pylint-ci
Create pylint.yml
2 parents 6f63d26 + d68ac63 commit ccc917d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

pylint.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Pylint
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Set up Python 3.8
13+
uses: actions/setup-python@v1
14+
with:
15+
python-version: 3.8
16+
- name: Install dependencies
17+
run: |
18+
python -m pip install --upgrade pip
19+
pip install pylint
20+
- name: Analysing the code with pylint
21+
run: |
22+
pylint `ls -R|grep .py$|xargs`

0 commit comments

Comments
 (0)