From 321559ccb73ccbbe901ca171355a395aef1bc583 Mon Sep 17 00:00:00 2001 From: Adam Janovsky Date: Sat, 4 Feb 2023 09:22:04 +0100 Subject: add compiled deps to lint pipeline --- .github/workflows/new_lint.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/new_lint.yml b/.github/workflows/new_lint.yml index bf9232eb..8b3c378e 100644 --- a/.github/workflows/new_lint.yml +++ b/.github/workflows/new_lint.yml @@ -11,7 +11,9 @@ jobs: with: python-version: "3.8" - name: Install dependencies - run: pip install -r requirements/dev_requirements.txt + run: | + run: sudo apt-get install build-essential libpoppler-cpp-dev pkg-config python3-dev -y + pip install -r requirements/dev_requirements.txt - name: Run Black run: black . --check --target-version py38 ruff: -- cgit v1.3.1