Skip to content

Bump jinja2 from 3.1.4 to 3.1.5 #9

Bump jinja2 from 3.1.4 to 3.1.5

Bump jinja2 from 3.1.4 to 3.1.5 #9

Workflow file for this run

name: tests
on:
push:
branches:
- "**"
pull_request:
types: [opened]
branches:
- "**"
jobs:
unit-testing:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv venv
uv pip install nox
- name: Run tests
run: |
uv run --no-project nox --python ${{ matrix.python-version }}
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
uv venv
uv pip install nox
- name: Lint the code
run: uv run --no-project nox -e lint