Skip to content

Bump lodash from 4.17.21 to 4.18.1 #28

Bump lodash from 4.17.21 to 4.18.1

Bump lodash from 4.17.21 to 4.18.1 #28

Workflow file for this run

name: Pylint
on:
pull_request:
branches: [ master, dev ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies (lint only)
run: |
python -m pip install --upgrade pip
pip install pylint biopython psycopg2-binary
- name: Run pylint
run: |
pylint --fail-under=8 $(git ls-files '*.py') --rcfile=config/.pylintrc