Skip to content

Bump jinja2 from 3.1.5 to 3.1.6 #359

Bump jinja2 from 3.1.5 to 3.1.6

Bump jinja2 from 3.1.5 to 3.1.6 #359

Workflow file for this run

name: Static Tests
on:
push:
branches:
- '**'
paths-ignore:
- 'docs/**'
- 'README.md'
- 'CHANGELOG.md'
- 'LICENSE'
- '.gitignore'
pull_request:
jobs:
static:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Environment
id: setup
uses: ./.github/actions/setup
with:
python-version: ${{ matrix.python-version }}
- name: Run Static tests with ${{ matrix.python-version }}
run: |
uv run --no-config pytest tests/static_tests