modified: .gitea/workflows/ruff.yaml
Some checks failed
Pylint / build (3.x) (push) Failing after 8s
ai-reviews / Review PR (pull_request) Successful in 5s
Greetings / greeting (pull_request) Successful in 4s
ruff / build (push) Successful in 6s

Use pip to install ruff instead of pipx
This commit is contained in:
2025-02-03 21:58:36 +01:00
parent a2fc311e25
commit ea2ff539a1

View File

@@ -13,10 +13,8 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: update PATH
run: pipx ensurepath
- name: Install the code linting and formatting tool Ruff
run: pipx install ruff
run: pip install ruff
- name: Lint code with Ruff
run: ruff check --output-format=github --target-version=py39
- name: Check code formatting with Ruff