Skip to content

Commit 8417e32

Browse files
committed
fix(disabled pylint): pylint overrated.
fix(disabled pylint): pylint overrated.
1 parent cf61cc0 commit 8417e32

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

.github/workflows/pylint.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
1-
name: Pylint
1+
# name: Pylint is overrated.
22

3-
on: [push, pull_request]
3+
# on: [push, pull_request]
44

5-
jobs:
6-
build:
7-
runs-on: ubuntu-latest
8-
strategy:
9-
matrix:
10-
python-version: ["3.10", "3.11"]
5+
# jobs:
6+
# build:
7+
# runs-on: ubuntu-latest
8+
# strategy:
9+
# matrix:
10+
# python-version: ["3.10", "3.11"]
1111

12-
steps:
13-
- uses: actions/checkout@v4
12+
# steps:
13+
# - uses: actions/checkout@v4
1414

15-
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v3
17-
with:
18-
python-version: ${{ matrix.python-version }}
15+
# - name: Set up Python ${{ matrix.python-version }}
16+
# uses: actions/setup-python@v3
17+
# with:
18+
# python-version: ${{ matrix.python-version }}
1919

20-
- name: Cache pip
21-
uses: actions/cache@v3
22-
with:
23-
path: ~/.cache/pip
24-
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
25-
restore-keys: |
26-
${{ runner.os }}-pip-
20+
# - name: Cache pip
21+
# uses: actions/cache@v3
22+
# with:
23+
# path: ~/.cache/pip
24+
# key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
25+
# restore-keys: |
26+
# ${{ runner.os }}-pip-
2727

28-
- name: Install dependencies
29-
run: |
30-
python -m pip install --upgrade pip
31-
pip install -r requirements.txt
32-
pip install pylint
28+
# - name: Install dependencies
29+
# run: |
30+
# python -m pip install --upgrade pip
31+
# pip install -r requirements.txt
32+
# pip install pylint
3333

34-
- name: Pylint code check
35-
run: |
36-
python -m pylint $(git ls-files '*.py')
34+
# - name: Pylint code check
35+
# run: |
36+
# python -m pylint $(git ls-files '*.py')

0 commit comments

Comments
 (0)