Skip to content

Bump jinja2 from 3.1.2 to 3.1.3 in /requirements #54

Bump jinja2 from 3.1.2 to 3.1.3 in /requirements

Bump jinja2 from 3.1.2 to 3.1.3 in /requirements #54

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
tests:
name: ${{ matrix.python }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ['3.12', '3.11', '3.10', '3.9', '3.8']
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
cache: pip
cache-dependency-path: requirements/tests.txt
- run: pip install tox
- run: tox run -e py${{ matrix.python }}
min:
name: Minimum Versions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c
with:
python-version: '3.8'
cache: pip
cache-dependency-path: requirements/tests.txt
- run: pip install tox
- run: tox run -e py-min