renamed ruff config #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python Flake8, black and pylint code quality check | |
on: [push] | |
jobs: | |
lint: | |
uses: mundialis/github-workflows/.github/workflows/linting.yml@add_post_pr_reviews | |
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 . |