Skip to content

Bump send and express #8

Bump send and express

Bump send and express #8

Workflow file for this run

name: Pylint
on:
pull_request:
branches:
- "master"
- "dev"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.10"]
steps:
- uses: actions/checkout@v4
- 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 biopython rpy2 psycopg2-binary
- name: Analysing the code with pylint
run: |
pylint --fail-under=8 $(git ls-files '*.py') --rcfile=config/.pylintrc