From e7b6f080599baf9a5fe9121ef3811433ff27e687 Mon Sep 17 00:00:00 2001 From: Benjamin Dornel Date: Fri, 27 Oct 2023 00:47:38 +0800 Subject: [PATCH] feat(ci): update workflow to install pdftotext --- .github/workflows/ci.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c20fcf51..bad0e2ae 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,6 +9,11 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - name: Install pdftotext + run: | + apt-get update + apt-get -y install build-essential libpoppler-cpp-dev pkg-config + - name: Setup Python & Poetry uses: ./.github/actions/setup-python-poetry with: