File tree 1 file changed +12
-12
lines changed
1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change 9
9
matrix :
10
10
python-version : ["3.12"]
11
11
steps :
12
- - uses : actions/checkout@v4
13
- - name : Set up Python ${{ matrix.python-version }}
14
- uses : actions/setup-python@v3
15
- with :
16
- python-version : ${{ matrix.python-version }}
17
- - name : Install dependencies
18
- run : |
19
- python -m pip install --upgrade pip
20
- pip install pylint
21
- - name : Analysing the code with pylint
22
- run : |
23
- pylint $(git ls-files '*.py')
12
+ - uses : actions/checkout@v4
13
+ - name : Set up Python ${{ matrix.python-version }}
14
+ uses : actions/setup-python@v3
15
+ with :
16
+ python-version : ${{ matrix.python-version }}
17
+ - name : Install dependencies
18
+ run : |
19
+ python -m pip install --upgrade pip
20
+ pip install pylint
21
+ - name : Analysing the code with pylint
22
+ run : |
23
+ pylint $(git ls-files '*.py')
You can’t perform that action at this time.
0 commit comments