From a4d0185ace0f6457b6fa1b1e3e256c31f079fdda Mon Sep 17 00:00:00 2001 From: CJ Steiner Date: Tue, 11 Mar 2025 16:06:06 -0500 Subject: [PATCH] ci: add implementation of caching for python dependencies --- .github/workflows/deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 47422e09..501a65e9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -15,7 +15,9 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: 3.x + python-version: '3.x' + cache: 'pip' + cache-dependency-path: '**/requirements-dev.txt' - run: pip install virtualenv - run: make - run: make push