diff options
| author | Adam Janovsky | 2023-02-04 09:22:04 +0100 |
|---|---|---|
| committer | Adam Janovsky | 2023-02-04 09:22:04 +0100 |
| commit | 321559ccb73ccbbe901ca171355a395aef1bc583 (patch) | |
| tree | 1ed0272599809184a34ba639633c1cc18bbaa4e8 /.github/workflows | |
| parent | 20bcdb76f6f693310af99d7a12402157166664d1 (diff) | |
| download | sec-certs-321559ccb73ccbbe901ca171355a395aef1bc583.tar.gz sec-certs-321559ccb73ccbbe901ca171355a395aef1bc583.tar.zst sec-certs-321559ccb73ccbbe901ca171355a395aef1bc583.zip | |
add compiled deps to lint pipeline
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/new_lint.yml | 4 |
1 files changed, 3 insertions, 1 deletions
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: |
