Skip to content

chore(deps): bump cryptography from 42.0.2 to 42.0.4 in /requirements #115

chore(deps): bump cryptography from 42.0.2 to 42.0.4 in /requirements

chore(deps): bump cryptography from 42.0.2 to 42.0.4 in /requirements #115

Workflow file for this run

name: Lint (Ruff, MyPy)
on:
push:
workflow_dispatch:
jobs:
pre-commit:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: apt-get update
run: sudo apt-get update
- name: Install dependencies
run: |
sudo apt-get install build-essential libpoppler-cpp-dev pkg-config python3-dev -y
pip install -r requirements/dev_requirements.txt
- name: Run pre-commit
run: pre-commit run --all-files