GitHub Actions
GitHub Actions provides CI/CD directly inside GitHub repositories through YAML-defined workflows.
Core Pages
Common Uses
- Run tests on pull requests.
- Build artifacts and container images.
- Deploy after merges to the main branch.
Practical Notes
- Keep workflows small and focused.
- Use secrets for tokens and credentials.
- Prefer reusable workflows when the same pattern repeats.