pesterchum/.github/workflows/pylint.yml
2023-05-04 20:25:42 +02:00

19 lines
498 B
YAML

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"