github-actions
Installation
SKILL.md
GitHub Actions
Quick Start
Create a workflow file at .github/workflows/<name>.yml:
name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: echo "Hello World"