Skip to content

Fixes #8: Allow "/" key to focus search box. #71

Fixes #8: Allow "/" key to focus search box.

Fixes #8: Allow "/" key to focus search box. #71

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions: {}
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.13t"
- "3.14"
- "3.14t"
steps:
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
version: "latest"
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: Build pyrefdev
run: uv sync --locked --dev
- name: Run pytest
run: uv run pytest