From 87a9b1dd5ff78228dda73dd63ecff3a1a0ce57ee Mon Sep 17 00:00:00 2001 From: Ruben van Staveren Date: Thu, 5 Mar 2026 16:00:55 +0100 Subject: [PATCH] Try this with uv --- .gitea/workflows/pylint.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pylint.yml b/.gitea/workflows/pylint.yml index d101f6a..4164d3f 100644 --- a/.gitea/workflows/pylint.yml +++ b/.gitea/workflows/pylint.yml @@ -11,7 +11,14 @@ jobs: matrix: python-version: ["3.11"] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 + - name: Install uv and set the Python versionV + uses: astral-sh/setup-uv@v7 + with: + python-version: ${{ matrix.python-version }} + - name: install Pylint using uv + run: | + uv tool install pylint - name: Analyse code with Pylint run: | - pylint $(git ls-files '*.py') + uv tool run pylint $(git ls-files '*.py')