From 86a5150ad37d4121fda2f11673c2d00b72560222 Mon Sep 17 00:00:00 2001 From: Ashhar Hasan Date: Fri, 16 Feb 2024 21:25:41 +0530 Subject: [PATCH] Enable pip cache for CI workflow --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a9da0c59..e03f2674 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: "3.11" + cache: "pip" + cache-dependency-path: setup.py - name: "Install pre-commit" run: pip install pre-commit @@ -67,6 +69,8 @@ jobs: - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} + cache: "pip" + cache-dependency-path: setup.py - name: Install dependencies run: | sudo apt-get update