switch CI to uv
Some checks failed
CI/CD / wol (push) Successful in 0s
CI/CD / build (push) Has been cancelled

This commit is contained in:
2025-09-12 21:43:52 +02:00
parent d89c296d36
commit 966ef331c1

View File

@@ -19,14 +19,12 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v5 run: uv python install
with:
python-version: '3.12'
cache: 'pip'
- run: pip install -r requirements.txt
- name: Install the code linting and formatting tool Ruff - name: Install the code linting and formatting tool Ruff
run: pip install ruff run: uv build
- name: Lint code with Ruff - name: Lint code with Ruff
run: ruff check --output-format=github --target-version=py39 run: ruff check --output-format=github --target-version=py39
- name: Check code formatting with Ruff - name: Check code formatting with Ruff