fix(unit): start to fix the broken workflows...

This commit is contained in:
perf3ct 2025-06-18 01:00:22 +00:00
parent 04cb40a2f0
commit 224a650e63
2 changed files with 20 additions and 1 deletions

View File

@ -28,6 +28,18 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
tesseract-ocr \
tesseract-ocr-eng \
libtesseract-dev \
libleptonica-dev \
pkg-config \
libclang-dev \
clang
- name: Setup Node.js
uses: actions/setup-node@v4
with:

View File

@ -34,7 +34,14 @@ jobs:
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y tesseract-ocr tesseract-ocr-eng libtesseract-dev libleptonica-dev pkg-config
sudo apt-get install -y \
tesseract-ocr \
tesseract-ocr-eng \
libtesseract-dev \
libleptonica-dev \
pkg-config \
libclang-dev \
clang
- name: Cache Rust dependencies
uses: actions/cache@v3