Merge pull request #126 from sheeeng/fix/pylint

fix: pylint
This commit is contained in:
Logykk
2021-10-26 08:09:31 +13:00
committed by GitHub

View File

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