@@ -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
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
/.lake
|
||||||
@@ -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
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
def hello := "world"
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
import InductiveVerification
|
||||||
|
|
||||||
|
def main : IO Unit :=
|
||||||
|
IO.println s!"Hello, {hello}!"
|
||||||
@@ -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"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
leanprover/lean4:v4.23.0
|
||||||
Reference in New Issue
Block a user