mirror of https://github.com/astral-sh/uv
Store choco cache in GitHub Actions cache
This step is weirdly slow, perhaps it will go faster if we stash the download in GitHub
This commit is contained in:
parent
2845cebe18
commit
38efe24a54
|
|
@ -251,6 +251,14 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: "Configure choco cache"
|
||||
run: choco config set cacheLocation ./.choco-cache
|
||||
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
path: ./.choco-cache
|
||||
key: choco-cache
|
||||
|
||||
- name: "Install Python"
|
||||
run: choco install python3 --verbose --version=3.9.13
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue