bookwyrm/.github/workflows/pylint.yml

23 lines
451 B
YAML
Raw Normal View History

2021-06-18 18:36:45 +00:00
name: Pylint
2021-06-18 18:57:11 +00:00
on: [push, pull_request]
2021-06-18 18:36:45 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-06-18 18:57:11 +00:00
- name: Set up Python 3.9
uses: actions/setup-python@v2
2021-06-18 18:36:45 +00:00
with:
2021-06-18 18:57:11 +00:00
python-version: 3.9
2021-06-18 18:36:45 +00:00
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
2021-06-18 18:57:11 +00:00
pylint bookwyrm/ --ignore=migrations