Skip to content

chore(deps-dev): Bump jinja2 from 3.1.2 to 3.1.3 #114

chore(deps-dev): Bump jinja2 from 3.1.2 to 3.1.3

chore(deps-dev): Bump jinja2 from 3.1.2 to 3.1.3 #114

Workflow file for this run

name: Python Test CI
on:
pull_request:
jobs:
ci:
name: Run test ci on python ${{ matrix.py }}
runs-on: ubuntu-latest
strategy:
matrix:
py:
- "3.9"
- "3.10"
- "3.11"
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Setup python ${{ matrix.py }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
cache: 'poetry'
- name: Install dependencies
run: poetry install --only test
- name: Run tests
run: poetry run tox