Skip to content

Update numpy requirement from ~=2.1.2 to >=2.1.2,<2.3.0 #115

Update numpy requirement from ~=2.1.2 to >=2.1.2,<2.3.0

Update numpy requirement from ~=2.1.2 to >=2.1.2,<2.3.0 #115

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