← スキル一覧に戻る

ci-and-releases
by Arthur742Ramos
⭐ 0🍴 0📅 2026年1月18日
SKILL.md
name: ci-and-releases description: A lightweight checklist for CI, toolchain bumps, and version/release hygiene for the ComputationalPaths Lean 4 project (Lake + lean-action CI).
CI & Releases
This skill provides a repeatable checklist for keeping the repo green on CI and preparing small “release-like” changes (toolchain bump, version bump, dependency updates).
CI mental model
CI is essentially “clean checkout + lake build”. Keep changes compatible with:
- current toolchain in
lean-toolchain - dependencies pinned by
lake-manifest.json - the project’s “zero-warning” expectations (treat warnings as failures to fix immediately)
Local verification (Windows)
From the Lean project root (computational_paths/):
.\lake.cmd build
.\lake.cmd exe computational_paths
If you suspect stale artifacts:
.\lake.cmd clean
.\lake.cmd build
Version bump checklist
This repo exposes a version string:
ComputationalPaths/Basic.leandefineslibraryVersionMain.leanprints it via the executable
When bumping version:
- Update
ComputationalPaths/Basic.lean(libraryVersion) - Run
.\lake.cmd build - Run
.\lake.cmd exe computational_pathsand confirm the output - If the bump is user-visible, update
README.md(or add a short changelog note)
Toolchain bump checklist
When updating lean-toolchain:
- Edit
lean-toolchain - Run
.\lake.cmd build - If dependencies need repinning, run
lake updateand re-build - Ensure CI config still matches expectations (
.github/workflows/*)
Dependency update checklist
If updating deps (manifest changes):
- Run
lake update - Build (
.\lake.cmd build) - Fix any breakage by updating imports/lemmas or pinning versions back as needed
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です