Skip to content

Commit 0a83df2

Browse files
committed
fix pip cache issue in CI
1 parent a646ea1 commit 0a83df2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/dev-cicd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
uses: actions/setup-python@v5
1919
with:
2020
python-version: "3.10"
21-
cache: "pip"
2221
- name: Install pre-commit
2322
run: pip install pre-commit
2423
- name: Run pre-commit
@@ -50,7 +49,6 @@ jobs:
5049
uses: actions/setup-python@v5
5150
with:
5251
python-version: ${{ matrix.python-version }}
53-
cache: "pip"
5452
- name: Install Tesseract OCR
5553
run: |
5654
sudo apt-get update
@@ -66,6 +64,8 @@ jobs:
6664
tesseract --list-langs
6765
- name: Install Dependencies
6866
run: |
67+
# Create pip cache directory if it doesn't exist
68+
mkdir -p ~/.cache/pip
6969
pip install -U pip
7070
pip install -e .
7171
pip install tox just pre-commit

0 commit comments

Comments
 (0)