Day 34
CI/CD Integration
Use Claude to write, debug, and optimize your CI/CD pipelines.
0 / 6 tasks
Generate GitHub Actions
bash
claude
> Generate a complete GitHub Actions CI/CD workflow for a Python FastAPI app that:
> - Runs on push to main and all PRs
> - Steps: checkout, setup Python 3.12, cache pip, install deps, run ruff, run mypy, run pytest
> - Deploys to production server via SSH on push to main only
> - Uses secrets: SSH_KEY, DEPLOY_HOST, DEPLOY_USER
> - Sends Slack notification on deployment success or failure
> Use ubuntu-latest, pin all action versions.