Skip to content

Feat/introduce jinja2 #68

Feat/introduce jinja2

Feat/introduce jinja2 #68

Workflow file for this run

name: Run test suite
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install poetry
- run: poetry config virtualenvs.create false
- name: Install dependencies
run: poetry install --no-ansi --no-interaction
- name: Run tests
run: pytest --cov-config=.coveragerc --cov=inertia --cov-report=term-missing --cov-fail-under=98 inertia/tests