Skip to content

Merge pull request #16 from PhantomCapAI/claude/polyrobin-social-frie… #38

Merge pull request #16 from PhantomCapAI/claude/polyrobin-social-frie…

Merge pull request #16 from PhantomCapAI/claude/polyrobin-social-frie… #38

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
validate:
name: Validate skill & config
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install PyYAML
run: pip install pyyaml
- name: Validate SKILL.md and sample config
run: |
chmod +x scripts/validate.sh
./scripts/validate.sh
markdown-links:
name: Check Markdown links
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Lint links
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: "yes"
use-verbose-mode: "yes"
config-file: ".github/mlc-config.json"