pesterchum/.github/workflows/pylint.yml

19 lines
498 B
YAML
Raw Normal View History

2023-02-12 20:02:19 -05:00
name: Pylint
on: push
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2023-05-04 14:25:42 -04:00
- name: Setup Python 3.11 x64
2023-02-12 20:02:19 -05:00
uses: actions/setup-python@v4
with:
2023-05-04 14:25:42 -04:00
python-version: '3.11'
2023-02-12 20:02:19 -05:00
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
2023-02-24 20:40:23 -05:00
run: python -m pylint "$PWD"