Skip to content

Added Response header support to Jinja decorators as well, refs #18 #31

Added Response header support to Jinja decorators as well, refs #18

Added Response header support to Jinja decorators as well, refs #18 #31

Workflow file for this run

name: Linters
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
jobs:
Linters:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
# Issue ref: https://github.com/actions/setup-python/issues/436
# cache: "pip"
cache-dependency-path: pyproject.toml
python-version-file: pyproject.toml
- name: Install poetry
run: python3 -m pip install poetry
- name: Install dependencies
run: poetry install
- name: Run static checks
run: poetry run poe static-checks