Skip to content

Commit c1d3e33

Browse files
authored
Usar cache para dependencias (#2369)
La acción que instala python en GutHub Actions puede crear un caché con las dependencias instaladas durante una corrida. Usar este cache debería hacer que nuestros tests en CI corran más rápido.
1 parent 8a5d819 commit c1d3e33

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/main.yml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
uses: actions/setup-python@v4
1717
with:
1818
python-version: "3.11"
19+
cache: "pip"
1920
- name: Sincronizar con CPython
2021
run: |
2122
git submodule update --init --depth=1 cpython

0 commit comments

Comments
 (0)