GitHub Actions
Automate workflows with CI/CD pipelines
GitHub Actions automates your workflow. Define CI/CD pipelines as YAML files that run on every push or PR.
GitHub Actions is a CI/CD platform. Workflows are YAML files that run on events like push, PR, or schedule.
CI/CD Pipeline
Pushrunning
Installwaiting
Lintwaiting
Testwaiting
Buildwaiting
Deploywaiting
YAML
# Workflow files live in: .github/workflows/ci.yml # Triggered by events: # - push to main # - pull request opened # - scheduled (cron) # - manual dispatch # Runs on GitHub-hosted runners: # ubuntu-latest, windows-latest, macos-latest