File tree Expand file tree Collapse file tree 2 files changed +11
-8
lines changed
Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -18,16 +18,19 @@ jobs:
1818 - name : Checkout Repository
1919 uses : actions/checkout@v4
2020
21- - name : Set up Python
22- uses : actions /setup-python@v5
21+ - name : Install uv
22+ uses : astral-sh /setup-uv@v4
2323 with :
24- python-version : ' 3.12'
24+ enable-cache : true
25+
26+ - name : Set up Python
27+ run : uv python install 3.11
2528
26- - name : Install darglint
27- run : pip install darglint
29+ - name : Install dependencies
30+ run : uv sync --frozen --extra dev
2831
2932 - name : List packages
30- run : pip list
33+ run : uv pip list
3134
3235 - name : Darglint checks
33- run : darglint -v 2 -z short src/
36+ run : uv run darglint -v 2 -z short src/
Original file line number Diff line number Diff line change 3232 run : uv python install 3.11
3333
3434 - name : Install AgentLab
35- run : uv sync --frozen
35+ run : uv sync --frozen --extra dev
3636
3737 - name : List packages
3838 run : uv pip list
You can’t perform that action at this time.
0 commit comments