Skip to content

removed pylint config #21

removed pylint config

removed pylint config #21

Workflow file for this run

name: Python Flake8, black and pylint code quality check
on: [push]
jobs:
lint:
uses: mundialis/github-workflows/.github/workflows/linting.yml@main
with:
VALIDATE_HTML: false
ruff:
name: ruff
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install apt dependencies
run: |
sudo apt-get install -y -qq python3 python3-pip
- name: Install pip dependencies
run: |
python -m pip install --upgrade pip
pip3 install ruff==0.5.7
ruff --version
- name: Lint with ruff
run: |
ruff check --config pyproject.toml .