github-actions
Installation
SKILL.md
GitHub Actions
Automate workflows with GitHub Actions for CI/CD, testing, and deployment.
Basic Workflow Structure
# .github/workflows/ci.yml
name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest