We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3abfbc commit fa0c557Copy full SHA for fa0c557
.github/workflows/python.yaml
@@ -15,11 +15,15 @@ jobs:
15
uses: actions/setup-python@v5
16
with:
17
python-version: "3.11"
18
- - name: Install dependencies
+ - name: Install uv
19
+ uses: astral-sh/setup-uv@v6
20
+ - name: Set up virtual environment and install dependencies
21
run: |
- python -m pip install --upgrade pip
- pip install -r requirements-dev.txt
22
+ uv venv .venv
23
+ uv pip install -r requirements-dev.txt
24
- name: Lint with ruff
- run: ruff check .
25
+ run: |
26
+ uv run ruff check .
27
- name: Check formatting with black
- run: black . --check --verbose
28
29
+ uv run black . --check --verbose
0 commit comments