Try this with uv
Some checks failed
Flake8 / build (3.11) (push) Successful in 13s
Mypy / build (3.11) (push) Failing after 2m12s
Pylint / build (3.11) (push) Failing after 2m33s

This commit is contained in:
2026-03-05 16:00:55 +01:00
parent 98643f9a69
commit 87a9b1dd5f

View File

@ -11,7 +11,14 @@ jobs:
matrix: matrix:
python-version: ["3.11"] python-version: ["3.11"]
steps: 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 - name: Analyse code with Pylint
run: | run: |
pylint $(git ls-files '*.py') uv tool run pylint $(git ls-files '*.py')