podman-compose/.github/workflows/pylint.yml
Povilas Kanapickas a5c354d60b Replace flake8, black, pylint with ruff
For now pylint checks are disabled.

Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
2024-03-07 18:28:05 +02:00

23 lines
470 B
YAML

name: Pylint
on:
- push
- pull_request
jobs:
lint-ruff:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
name: Set up Python ${{ matrix.python-version }}
with:
python-version: ${{ matrix.python-version }}
- name: Analysing the code with ruff
run: |
pip install -r test-requirements.txt
ruff format --check