Skip to content

Bump jinja2 from 3.1.3 to 3.1.4 #77

Bump jinja2 from 3.1.3 to 3.1.4

Bump jinja2 from 3.1.3 to 3.1.4 #77

Workflow file for this run

name: Test
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.9'
- '3.10'
- '3.11'
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Setup python (${{ matrix.python-version }})
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install developer tools
run: make bootstrap
- name: Install Node dependencies
run: invoke npm-install
if: steps.node-cache.outputs.cache-hit != 'true'
- name: Install dependencies
run: invoke requirements-dev
if: steps.python-cache.outputs.cache-hit != 'true'
- name: Run tests
run: invoke test