Skip to content

Reducing complexity of implementation in order to be able to add Atlas text search token based pagination #672

Reducing complexity of implementation in order to be able to add Atlas text search token based pagination

Reducing complexity of implementation in order to be able to add Atlas text search token based pagination #672

Workflow file for this run

name: Linting
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: pip
- name: Install dependencies
run: |
pip install pre-commit
- name: Run pre-commit
run: |
pre-commit run --all-files --show-diff-on-failure