init
This commit is contained in:
commit
57fb134506
7 changed files with 30 additions and 0 deletions
14
.github/workflows/lean_action_ci.yml
vendored
Normal file
14
.github/workflows/lean_action_ci.yml
vendored
Normal 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
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/.lake
|
3
FfiTest.lean
Normal file
3
FfiTest.lean
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
-- This module serves as the root of the `FfiTest` library.
|
||||||
|
-- Import modules here that should be built as part of the library.
|
||||||
|
import FfiTest.Basic
|
1
FfiTest/Basic.lean
Normal file
1
FfiTest/Basic.lean
Normal file
|
@ -0,0 +1 @@
|
||||||
|
def hello := "world"
|
1
README.md
Normal file
1
README.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
# ffi_test
|
9
lakefile.lean
Normal file
9
lakefile.lean
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
import Lake
|
||||||
|
open Lake DSL
|
||||||
|
|
||||||
|
package "ffi_test" where
|
||||||
|
version := v!"0.1.0"
|
||||||
|
|
||||||
|
@[default_target]
|
||||||
|
lean_lib «FfiTest» where
|
||||||
|
-- add library configuration options here
|
1
lean-toolchain
Normal file
1
lean-toolchain
Normal file
|
@ -0,0 +1 @@
|
||||||
|
stable
|
Loading…
Reference in a new issue