mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-26 03:21:05 +00:00
Adds pylint workflow
This commit is contained in:
parent
816feb1cc9
commit
5db506523d
1 changed files with 22 additions and 0 deletions
22
.github/workflows/pylint.yml
vendored
Normal file
22
.github/workflows/pylint.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
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: |
|
||||
find . -name '*.py' -exec pylint {} \;
|
Loading…
Reference in a new issue