Set up project
Lean Action CI / build (push) Has been cancelled

This commit is contained in:
Leopold Fajtak
2025-09-22 09:56:03 +02:00
commit f25a2dda4e
8 changed files with 35 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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
+1
View File
@@ -0,0 +1 @@
/.lake
+3
View File
@@ -0,0 +1,3 @@
-- This module serves as the root of the `InductiveVerification` library.
-- Import modules here that should be built as part of the library.
import InductiveVerification.Basic
+1
View File
@@ -0,0 +1 @@
def hello := "world"
+4
View File
@@ -0,0 +1,4 @@
import InductiveVerification
def main : IO Unit :=
IO.println s!"Hello, {hello}!"
+1
View File
@@ -0,0 +1 @@
# inductive-verification
+10
View File
@@ -0,0 +1,10 @@
name = "inductive-verification"
version = "0.1.0"
defaultTargets = ["inductive-verification"]
[[lean_lib]]
name = "InductiveVerification"
[[lean_exe]]
name = "inductive-verification"
root = "Main"
+1
View File
@@ -0,0 +1 @@
leanprover/lean4:v4.23.0