Skip to content

Added the search cli command #2

Added the search cli command

Added the search cli command #2

Workflow file for this run

name: DocBinder OSS Library CI
on:
pull_request:
branches:
- main
paths-ignore:
- "docs/**"
- "mkdocs.yml"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
include:
- python-version: "3.11"
tox-env: "py311"
- python-version: "3.12"
tox-env: "py312"
- python-version: "3.13"
tox-env: "py313"
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
version: "0.7.13"
enable-cache: true
- name: Install dependencies with uv
run: |
uv sync --locked --all-extras --dev
- name: Lint code with uv
run: |
uv tool run pre-commit
- name: Run tox with uv
run: |
uv run tox -e ${{ matrix.tox-env }}