Skip to content

chore(deps): bump jinja2 from 3.1.3 to 3.1.4 in /requirements #134

chore(deps): bump jinja2 from 3.1.3 to 3.1.4 in /requirements

chore(deps): bump jinja2 from 3.1.3 to 3.1.4 in /requirements #134

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