Skip to content

Merge pull request #12 from mozilla-ai/add-cli #20

Merge pull request #12 from mozilla-ai/add-cli

Merge pull request #12 from mozilla-ai/add-cli #20

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install dependencies
run: uv sync --dev
- name: Run pre-commit checks
run: uv run pre-commit run --all-files