File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 88 steps :
99 - uses : actions/checkout@v4
1010 - uses : astral-sh/setup-uv@v6
11+ - uses : actions/cache@v4
12+ with :
13+ path : ~/.cache/uv
14+ key : uv-${{ hashFiles('pyproject.toml') }}
1115
1216 - name : Initialise pre-commit
1317 run : uv run pre-commit install-hooks
2125 steps :
2226 - uses : actions/checkout@v4
2327 - uses : astral-sh/setup-uv@v6
28+ - uses : actions/cache@v4
29+ with :
30+ path : ~/.cache/uv
31+ key : uv-${{ hashFiles('pyproject.toml') }}
2432
2533 - name : Run tests
2634 run : uv run pytest .
3139 steps :
3240 - uses : actions/checkout@v4
3341 - uses : astral-sh/setup-uv@v6
42+ - uses : actions/cache@v4
43+ with :
44+ path : ~/.cache/uv
45+ key : uv-${{ hashFiles('pyproject.toml') }}
3446
3547 - name : Build package
3648 run : uv build
You can’t perform that action at this time.
0 commit comments