Files
starter-workflows/ci/pylint.yml
T
Henry Harutyunyan 4fc839617b Fix on step name for pylint action
On analyzing the code with `pylint`, the name of the step is `Test with pytest`, which is certainly not what it does.
2020-09-16 14:49:17 +04:00

23 lines
431 B
YAML

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint `ls -R|grep .py$|xargs`