Skip to content

Add Contributors section to README #232

Add Contributors section to README

Add Contributors section to README #232

Workflow file for this run

name: CI/CD
on:
push:
branches: [main]
pull_request:
types: [opened, reopened, ready_for_review, synchronize]
issue_comment:
jobs:
link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Link Checker (lychee)
uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2.8.0
test:
needs: link-check
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: pip install pytest "mcp>=1.2,<2"
- name: Run tests
run: python -m pytest tests/ -v
notify:
needs: [test]
runs-on: ubuntu-latest
steps:
- uses: Waybox-AI/feishu-notification@main
with:
webhook-url: ${{ secrets.FEISHU_WEBHOOK_URL }}