
ci-and-releases
A lightweight checklist for CI, toolchain bumps, and version/release hygiene for the ComputationalPa
提供方 Arthur742Ramos|开源
CI & Releases
Local CI Mirror
# Build
lake build
# Run executable
lake exe computational_paths
# Clean rebuild
lake clean && lake build
Version Bump
- Update
ComputationalPaths/Basic.lean(libraryVersion) - Build + run exe to confirm
Toolchain Bump
- Edit
lean-toolchain - Build; run
lake updateif dependencies need repinning - Build again
CI Configuration
GitHub Actions uses leanprover/lean-action@v1:
# .github/workflows/lean_action_ci.yml
name: Lean Action CI
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: leanprover/lean-action@v1