Skip to content

Add mongodb-query skill with testing infrastructure MCP-425 #3

Add mongodb-query skill with testing infrastructure MCP-425

Add mongodb-query skill with testing infrastructure MCP-425 #3

Workflow file for this run

name: Validate Skills
on:
pull_request:
paths:
- "skills/**"
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
# Full history is needed so git diff can compare against the base branch
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: stable
- name: Install skill-validator
run: go install github.com/dacharyc/skill-validator@latest
- name: Validate changed skills
run: bash .github/scripts/validate-skills.sh "${{ github.base_ref }}"