diff --git a/.gitea/workflows/pylint.yml b/.gitea/workflows/pylint.yml index 4164d3f..d101f6a 100644 --- a/.gitea/workflows/pylint.yml +++ b/.gitea/workflows/pylint.yml @@ -11,14 +11,7 @@ jobs: matrix: python-version: ["3.11"] steps: - - 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 + - uses: actions/checkout@v4 - name: Analyse code with Pylint run: | - uv tool run pylint $(git ls-files '*.py') + pylint $(git ls-files '*.py')