SNAPKITTYWEST's picture
add .github/workflows/ci.yml
358c49d verified
Raw
History Blame Contribute Delete
728 Bytes
name: Lean-LLM-CI
on:
push:
pull_request:
jobs:
lean-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Lean 4
uses: leanprover/lean4-action@v1
with:
lean-version: "4.13.0"
- name: Build project
working-directory: lean4
run: |
lake update
lake build
harness-smoke:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate python files
run: python -m py_compile inference/server.py eval/run_minif2f.py
- name: Validate Prolog files exist
run: |
test -f logic/sovereign_verification.pl
test -f logic/verification_loop.pl