Skip to content

Bump jinja2 from 3.1.4 to 3.1.5 #33

Bump jinja2 from 3.1.4 to 3.1.5

Bump jinja2 from 3.1.4 to 3.1.5 #33

Workflow file for this run

name: Lint
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry==1.8.3
- name: Setup Python 3.8
uses: actions/setup-python@v5
with:
python-version: "3.8"
cache: "poetry"
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Install Project
run: poetry install --no-interaction
- name: Ruff Lint Format
run: poetry run ruff format --check
id: format
- name: Ruff Lint Check
run: poetry run ruff check --output-format=github
if: success() || steps.format.conclusion == 'failure'