Skip to content

implement limiting the max length of search query to 300 (configurable) #537

implement limiting the max length of search query to 300 (configurable)

implement limiting the max length of search query to 300 (configurable) #537

Workflow file for this run

name: Python CI
on:
push:
defaults:
run:
working-directory: agency
jobs:
tests-and-linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
cache: "poetry"
python-version-file: "agency/.python-version"
- name: Install dependencies
run: poetry install
- name: Linting & formatting
run: make lint & make fmt-check
- name: Run tests
run: make test