Skip to content

Correct uv installation command in pylint.yml #4

Correct uv installation command in pylint.yml

Correct uv installation command in pylint.yml #4

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
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install uv
run: |
python -m pip install --upgrade pip
pip install uv
uv venv
- name: Install linter
run: |
uv pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')