Skip to content

Commit

Permalink
CI: apt-get update before install
Browse files Browse the repository at this point in the history
  • Loading branch information
thp committed Jul 30, 2024
1 parent 6083cec commit 5561459
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:
python -m pip install --upgrade pip
python -m pip install --requirement requirements.txt
python -m pip install pycodestyle==2.6.0 pytest
sudo apt install -y build-essential libpoppler-cpp-dev pkg-config python3-dev tesseract-ocr
sudo apt-get update
sudo apt-get install -y build-essential libpoppler-cpp-dev pkg-config python3-dev tesseract-ocr
python -m pip install pdftotext docutils pygments pytesseract pillow jq
- name: Test with pytest
run: pytest -v

0 comments on commit 5561459

Please sign in to comment.