Skip to content

chore(deps): bump jinja2 from 3.1.2 to 3.1.3 #212

chore(deps): bump jinja2 from 3.1.2 to 3.1.3

chore(deps): bump jinja2 from 3.1.2 to 3.1.3 #212

Workflow file for this run

name: ci
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pip install poetry==1.4.2
- name: Install dependencies
run: poetry install
- name: Lint with ruff
run: poetry run ruff .
- name: Run tests
run: poetry run pytest .