Skip to content

Bump jinja2 from 3.1.3 to 3.1.5 in the pip group #798

Bump jinja2 from 3.1.3 to 3.1.5 in the pip group

Bump jinja2 from 3.1.3 to 3.1.5 in the pip group #798

Workflow file for this run

name: formatting & linting
on: [push]
jobs:
linting:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache multiple Pips
uses: actions/cache@v4
with:
path: |
~/.cache/pip
key: ${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
- run: pip install poetry
- run: poetry install
- run: poetry run make check
- run: poetry run make lint