fix: remove unsupported Jinja2 now tag from LICENSE and CHANGELOG #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 %} | ||
| - name: Check notebooks stripped | ||
| run: poetry run nbstripout --verify notebooks/**/*.ipynb | ||
| {% endif %} | ||