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 c9ff17a commit 13b1fbbCopy full SHA for 13b1fbb
.github/workflows/projects.yml
@@ -14,19 +14,19 @@ jobs:
14
15
steps:
16
- name: Checkout Code
17
- uses: actions/checkout@v4
+ uses: actions/checkout@v5
18
19
- - name: Set up Python
20
- uses: actions/setup-python@v5
21
- with:
22
- python-version: '3.x'
+ - name: Install uv
+ uses: astral-sh/setup-uv@v7
+
+ - name: Install the project
23
+ run: uv sync --locked --all-extras --dev
24
25
- name: Parse Issue and Save JSON
26
env:
27
ISSUE_BODY: ${{ github.event.issue.body }}
28
ISSUE_NUMBER: ${{ github.event.issue.number }}
- run: |
29
- python scripts/parse_issue.py
+ run: uv run scripts/parse_issue.py
30
31
- name: Commit and Push Changes
32
uses: stefanzweifel/git-auto-commit-action@v5
requirements.txt
0 commit comments