Set ES mapping.total_fields to 2000 for now #249
This file contains 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: Style Checks | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'Tekst-API/tekst/**' | |
- 'Tekst-API/tests/**' | |
- 'Tekst-API/pyproject.toml' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'Tekst-API/tekst/**' | |
- 'Tekst-API/tests/**' | |
- 'Tekst-API/pyproject.toml' | |
workflow_dispatch: | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./Tekst-API | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
cache: 'poetry' | |
cache-dependency-path: './Tekst-API/poetry.lock' | |
- name: Install dependencies | |
run: poetry install --sync | |
- name: Cancel on setup error | |
if: failure() | |
uses: andymckay/[email protected] | |
- name: Lint code base | |
if: always() | |
run: poetry run ruff check . --extend-select N | |
- name: Check code formatting | |
if: always() | |
run: poetry run ruff format . --check |