f0dfbfc3d7
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
Pylint / build (3.9) (push) Waiting to run
RequirementsTest / build (windows-latest, 3.9) (push) Waiting to run
RequirementsTest / build (macos-latest, 3.9) (push) Waiting to run
RequirementsTest / build (ubuntu-latest, 3.9) (push) Waiting to run
26 lines
680 B
YAML
26 lines
680 B
YAML
name: Pylint
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.9"]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v3
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install pylint
|
|
pip install -r requirements.txt
|
|
- name: Analysing the code with pylint
|
|
run: |
|
|
pylint $(ls *.py)
|
|
# not considering lib folder it contains DASH library code, the design does not align with pep8 principle
|