Skip to content

Add Claude Plugin Marketplace manifest, icon, and README #8

Add Claude Plugin Marketplace manifest, icon, and README

Add Claude Plugin Marketplace manifest, icon, and README #8

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Set up Python
run: uv python install 3.11
- name: Install dependencies
run: make install
- name: Lint
run: make lint
- name: Format check
run: make format-check
- name: Test
run: make test