Skip to content

chore(deps-dev): bump jinja2 from 3.1.3 to 3.1.4 #632

chore(deps-dev): bump jinja2 from 3.1.3 to 3.1.4

chore(deps-dev): bump jinja2 from 3.1.3 to 3.1.4 #632

Workflow file for this run

name: pre-commit
on:
pull_request:
push:
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
poetry-version: ["1.6"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v3.0.0
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install
- run: poetry run pre-commit run --show-diff-on-failure --color=always --all-files
shell: bash