pesterchum/.github/workflows/pylint.yml

21 lines
526 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
- name: Setup Python 3.10 x64
uses: actions/setup-python@v4
with:
python-version: '3.10'
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: |
cd ..
python -m pylint "$PWD"