Remember to add pip caching to GitHub Actions
- ID
3f49953- date
2024-05-07 08:42:44+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
40a6cbf- message
Remember to add pip caching to GitHub Actions- changed files
1 file, 2 additions, 1 deletion
Changed files
.github/workflows/main.yml (1076) → .github/workflows/main.yml (1095)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index c196831..3985777 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -20,7 +20,8 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
- python-version: "3.12"
+ python-version: 3.12
+ cache: pip
- name: Install dependencies
run: python3 -m pip install -r dev_requirements.txt