Skip to content

fix: remove unsupported Jinja2 now tag from LICENSE and CHANGELOG #5

fix: remove unsupported Jinja2 now tag from LICENSE and CHANGELOG

fix: remove unsupported Jinja2 now tag from LICENSE and CHANGELOG #5

Workflow file for this run

name: CI
on:
push:
branches: [main, uat, dev]
pull_request:
branches: [main, uat]
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "{{ python_version }}"
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install --with dev
- name: Lint
run: poetry run ruff check .
- name: Format check
run: poetry run ruff format --check .
- name: Type check
run: poetry run mypy src
- name: Test
run: poetry run pytest
{% if use_notebooks %}

Check failure on line 38 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 38
- name: Check notebooks stripped
run: poetry run nbstripout --verify notebooks/**/*.ipynb
{% endif %}