serpapi-ci-integration
Set up CI/CD for SerpApi integrations with fixture-based testing. Use when automating SerpApi tests without consuming credits, or validating search result parsing in CI. '
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill serpapi-ci-integration --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# SerpApi CI Integration ## Overview CI for SerpApi should use fixture-based tests (no API credits consumed) for PRs, with optional live integration tests on main branch only. ## Instructions ### Step 1: GitHub Actions Workflow ```yaml name: SerpApi Tests on: [push, pull_request] jobs: unit-tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: { python-version: '3.12' } - run: pip install serpapi pytest - run: pytest tests/ -v # Uses fixtures, no API key needed integration: runs-on: ubuntu-latest if: github.ref == 'refs/heads/main' env: SERPAPI_API_KEY: ${{ secrets.SERPAPI_API_KEY }} steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: { python-version: '3.12' } - run: pip install serpapi pytest - run: pytest tests/integration/ -v --timeout=30 ``` ### Step 2: Fixture-Based Unit Tests ```python # tests/test_search_parser.py import json, pytest def load_fixture(name): with open(f"tests/fixtures/{name}.json") as f: return json.load(f) def test_parse_organic_results(): result = load_fixture("google_python_tutorial") assert "organic_results" in result assert len(result["organic_results"]) > 0 assert result["organic_res
- Overview
- Instructions
- Step 1: GitHub Actions Workflow
- Step 2: Fixture-Based Unit Tests
- Step 3: Live Integration Test (Controlled)
- Error Handling
- Resources
- Next Steps
What does the serpapi-ci-integration skill do?
Set up CI/CD for SerpApi integrations with fixture-based testing. Use when automating SerpApi tests without consuming credits, or validating search result parsing in CI. '
How do I install it?
Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill serpapi-ci-integration --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.