Skip to content

Add retry hint on empty search results; warn on unrecognized shape #6

Add retry hint on empty search results; warn on unrecognized shape

Add retry hint on empty search results; warn on unrecognized shape #6

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
permissions:
contents: read
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install package and dev tools
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Ruff
run: ruff check .
- name: Black
run: black --check .
- name: Pytest
run: pytest -q