Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run Tests
name: CI

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-readme.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Generate README
name: Auto-update README

on:
push:
Expand Down
6 changes: 3 additions & 3 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This repository contains named Google Sheets formulas using LET and LAMBDA funct

```
named-functions/
├── .github/workflows/*.yml # CI/CD: test.yml (quality gate), generate-readme.yml, claude.yml
├── .github/workflows/*.yml # CI/CD: ci.yml (quality gate), generate-readme.yml, claude.yml
├── formulas/*.yaml # Individual formula definitions
├── scripts/ # Python package with shared modules and scripts
│ ├── __init__.py # Package marker
Expand Down Expand Up @@ -88,8 +88,8 @@ git commit -m "Add/update YOUR_FORMULA"

### CI/CD

- **test.yml**: Primary quality gate (runs tests, linter, generator, verifies README up-to-date)
- **generate-readme.yml**: Auto-commits README on main, comments on PRs if stale
- **ci.yml**: Primary quality gate (runs Python/YAML linting, tests, formula linter, README generation, verification)
- **generate-readme.yml**: Auto-commits README on main, comments on PRs if stale (runs formula linter before generation)
- **claude.yml**: Claude Code integration (restricted to git, uv, python commands)

**Formula expansion failures block PR merges** - all formulas must be syntactically valid and fully expandable.
Expand Down
2 changes: 1 addition & 1 deletion tests/CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def test_feature_name(self):

## CI Integration

Tests run automatically on every push and PR via `.github/workflows/test.yml`:
Tests run automatically on every push and PR via `.github/workflows/ci.yml`:
- Installs pytest, pyyaml, pyparsing
- Runs pytest test suite
- Runs linter on all formulas
Expand Down
Loading