Skip to content

Bump pytest-cov from 5.0.0 to 6.0.0 (#138) #110

Bump pytest-cov from 5.0.0 to 6.0.0 (#138)

Bump pytest-cov from 5.0.0 to 6.0.0 (#138) #110

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