Skip to content

chore: add MIT LICENSE #21

chore: add MIT LICENSE

chore: add MIT LICENSE #21

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate project structure
run: |
echo "Checking project structure..."
test -f README.md && echo "✅ README.md found"
test -d .claude && echo "✅ .claude directory found"
echo "All checks passed!"