Skip to content

build(deps): bump jinja2 from 3.1.4 to 3.1.5 in /examples/flask #196

build(deps): bump jinja2 from 3.1.4 to 3.1.5 in /examples/flask

build(deps): bump jinja2 from 3.1.4 to 3.1.5 in /examples/flask #196

Workflow file for this run

name: ci
on:
push:
pull_request:
types: [opened, reopened]
jobs:
ci:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
poetry-version: ['1.4.2']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install
- name: Test
run: poetry run pytest