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
Installs
2
First Seen
Jan 26, 2026
github-actions — simon-jarillo/prueba-skills