Skip to content

feat: voice input, model picker, and multi-form fill #97

feat: voice input, model picker, and multi-form fill

feat: voice input, model picker, and multi-form fill #97

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install linter
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run linter
run: |
ruff check src/ --output-format=github