testing-workflow
Installation
SKILL.md
Skill: testing-workflow
This skill verifies the repository's CI pipeline, tests, and training integration.
When to Use
- Before and after any code change
- When debugging failing CI
- To confirm the repository is in a healthy state
- Before opening a pull request
Commands
Run in this exact order:
# 1. Lint check
ruff check .
flake8 . --max-line-length=88 --extend-ignore=E203,W503