Skip to content

Merge pull request #176 from Dpeta/easy-socket-fix-(clueless) #129

Merge pull request #176 from Dpeta/easy-socket-fix-(clueless)

Merge pull request #176 from Dpeta/easy-socket-fix-(clueless) #129

Workflow file for this run

name: Pylint
on: push
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python 3.11 x64
uses: actions/setup-python@v4
with:
python-version: '3.11'
architecture: 'x64'
- name: Install Dependencies
run: python3 -m pip install PyQt6 certifi PyInstaller
- name: Install Pylint
run: python3 -m pip install --pre pylint
- name: Run Pylint
run: python -m pylint "$PWD"