Skip to content

Commit 501d837

Browse files
committed
updated package in ci-cd
1 parent 9f088a8 commit 501d837

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/lint.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ jobs:
1919
with:
2020
python-version: "3.11"
2121

22+
- name: Install uv
23+
uses: astral-sh/setup-uv@v6
24+
2225
- name: Install linter
23-
run: |
24-
python -m pip install --upgrade pip
25-
pip install ruff
26+
run: uv pip install --system ruff
2627

2728
- name: Run linter
2829
run: |

.github/workflows/tests.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ jobs:
1818
with:
1919
python-version: "3.11"
2020

21+
- name: Install uv
22+
uses: astral-sh/setup-uv@v6
23+
2124
- name: Install dependencies
22-
run: |
23-
python -m pip install --upgrade pip
24-
pip install -r requirements.txt
25+
run: uv pip install --system -r requirements.txt
2526

2627
- name: Run tests
2728
env:

0 commit comments

Comments
 (0)