Skip to content

Commit 13b1fbb

Browse files
committed
Fix dependencies installation
1 parent c9ff17a commit 13b1fbb

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.github/workflows/projects.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ jobs:
1414

1515
steps:
1616
- name: Checkout Code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

19-
- name: Set up Python
20-
uses: actions/setup-python@v5
21-
with:
22-
python-version: '3.x'
19+
- name: Install uv
20+
uses: astral-sh/setup-uv@v7
21+
22+
- name: Install the project
23+
run: uv sync --locked --all-extras --dev
2324

2425
- name: Parse Issue and Save JSON
2526
env:
2627
ISSUE_BODY: ${{ github.event.issue.body }}
2728
ISSUE_NUMBER: ${{ github.event.issue.number }}
28-
run: |
29-
python scripts/parse_issue.py
29+
run: uv run scripts/parse_issue.py
3030

3131
- name: Commit and Push Changes
3232
uses: stefanzweifel/git-auto-commit-action@v5

requirements.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)