Skip to content

Update matplotlib requirement from ~=3.9.2 to >=3.9.2,<3.11.0 (#143) #125

Update matplotlib requirement from ~=3.9.2 to >=3.9.2,<3.11.0 (#143)

Update matplotlib requirement from ~=3.9.2 to >=3.9.2,<3.11.0 (#143) #125

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files 'pyKVFinder/*.py') --output=pylint.log || true
- name: Upload pylint report
uses: actions/upload-artifact@v4
with:
name: log
path: ./pylint.log