Skip to content

Strip overlapping code-review items from core-footguns.md; tighten pr… #27

Strip overlapping code-review items from core-footguns.md; tighten pr…

Strip overlapping code-review items from core-footguns.md; tighten pr… #27

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
validate:
name: Validate skill source
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install validation dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ruff
- name: Run skill source checks
run: python3 scripts/validate.py --skip-installed
- name: Ruff check scripts
run: python3 -m ruff check scripts