Skip to content

Bump SKILL.md version from 1.1.0 to 1.2.0 #33

Bump SKILL.md version from 1.1.0 to 1.2.0

Bump SKILL.md version from 1.1.0 to 1.2.0 #33

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install ruff
run: pip install ruff
- name: Run ruff
run: ruff check .
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install pytest
pip install mcp || true # mcp requires Python >=3.10; skip on older versions
- name: Run tests
run: python -m pytest tests/ -v