Skip to content

Bump qs, express and @cypress/request #25

Bump qs, express and @cypress/request

Bump qs, express and @cypress/request #25

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