diff options
| author | Adam Janovsky | 2023-02-04 09:27:27 +0100 |
|---|---|---|
| committer | Adam Janovsky | 2023-02-04 09:27:27 +0100 |
| commit | e9ef55642b3712cf8cae6b5e46a51208b74b72c0 (patch) | |
| tree | 2d244a14043d8181f011ffa2ee1ff9dbb827afbb | |
| parent | b310fd47f7bacde5bda0948d5fc004022d7462ab (diff) | |
| download | sec-certs-e9ef55642b3712cf8cae6b5e46a51208b74b72c0.tar.gz sec-certs-e9ef55642b3712cf8cae6b5e46a51208b74b72c0.tar.zst sec-certs-e9ef55642b3712cf8cae6b5e46a51208b74b72c0.zip | |
.
| -rw-r--r-- | .github/workflows/new_lint.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/new_lint.yml b/.github/workflows/new_lint.yml index d93d30ba..9cb2236f 100644 --- a/.github/workflows/new_lint.yml +++ b/.github/workflows/new_lint.yml @@ -24,7 +24,9 @@ jobs: with: python-version: "3.8" - name: Install dependencies - run: pip install -r requirements/dev_requirements.txt + run: | + sudo apt-get install build-essential libpoppler-cpp-dev pkg-config python3-dev -y + pip install -r requirements/dev_requirements.txt - name: Run Ruff run: ruff . --format=github mypy: @@ -35,6 +37,8 @@ jobs: with: python-version: "3.8" - name: Install dependencies - run: pip install -r requirements/dev_requirements.txt + run: | + sudo apt-get install build-essential libpoppler-cpp-dev pkg-config python3-dev -y + pip install -r requirements/dev_requirements.txt - name: Run Mypy run: mypy . |
