1
0
Fork 0
mirror of synced 2024-05-19 03:52:47 +12:00

SteamGrades: Silence pylint

This commit is contained in:
loathingKernel 2023-12-06 11:08:36 +02:00
parent e2a7047933
commit 9ce4eeb37d
No known key found for this signature in database
GPG key ID: CE0C72D0B53821FD
2 changed files with 6 additions and 8 deletions

View file

@ -24,14 +24,12 @@ jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Test Dependencies
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install astroid
@ -45,4 +43,4 @@ jobs:
pip3 install qstylizer
- name: Analysis with pylint
run: |
python3 -m pylint -E rare --jobs=3 --disable=E0611,E1123,E1120 --ignore=ui,singleton.py --extension-pkg-whitelist=PyQt5 --generated-members=PyQt5.*
python3 -m pylint -E rare --jobs=3 --disable=E0611,E1123,E1120 --ignore=ui,singleton.py --extension-pkg-whitelist=PyQt5 --generated-members=PyQt5.*,orjson.*

View file

@ -24,8 +24,8 @@ jobs:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
python3 -m pip install --upgrade pip
pip3 install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__