-
-
Notifications
You must be signed in to change notification settings - Fork 39
56 lines (54 loc) · 1.54 KB
/
pylint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Pylint
on:
pull_request:
paths:
- '.github/workflows/pylint.yml'
- '**.py'
push:
paths:
- '.github/workflows/pylint.yml'
- '**.py'
workflow_dispatch:
jobs:
generate_python_matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v4
- id: set-matrix
name: set-matrix
run: |
matrix=$(cat ./supported_python_versions.json)
echo "matrix=${matrix}" >> $GITHUB_OUTPUT
lint:
needs: generate_python_matrix
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ${{fromJson(needs.generate_python_matrix.outputs.matrix)}}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install aiosmtpd
pip install bs4
pip install pylint
pip install pytest
pip install PyYAML
pip install requests
pip install setuptools
pip install typing-extensions
- name: Analysing the code with pylint for Python 3.6
run: |
pylint --disable=duplicate-code,no-self-use $(git ls-files '*.py')
if: ${{ matrix.python-version == '3.6' }}
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
if: ${{ matrix.python-version != '3.6' }}