zspotify/.github/workflows/pylint.yml
el-gringo-alto 7412abcee5 Revert "Merge branch 'main' into argument-parsing"
This reverts commit e7b3f5c4bd, reversing
changes made to 95f0dc8edf.
2021-10-28 02:25:57 -04:00

24 lines
512 B
YAML

name: Pylint
# yamllint disable-line rule:truthy
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Setup Pylint
run: |
python -m pip install --upgrade pip
pip install pylint
pip install -r requirements.txt
- name: Run Pylint
run: |
pylint $(git ls-files '*.py')