Skip to content

use sqlite fts5 for faster and more natural feeling part selection #289

use sqlite fts5 for faster and more natural feeling part selection

use sqlite fts5 for faster and more natural feeling part selection #289

Workflow file for this run

---
name: Lint and format everything
on: # yamllint disable-line rule:truthy
push:
branches:
- main
pull_request:
jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
- name: Install markdownlint
run: npm install -g markdownlint-cli
- name: Run markdownlint
run: markdownlint "**/*.md"
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install ruff
run: pip install ruff
- name: Run ruff
run: ruff check $(git ls-files '*.py')