This commit is contained in:
qwjyh 2024-10-23 16:03:06 +09:00
commit 57fb134506
7 changed files with 30 additions and 0 deletions

14
.github/workflows/lean_action_ci.yml vendored Normal file
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
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/.lake

3
FfiTest.lean Normal file
View 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
View file

@ -0,0 +1 @@
def hello := "world"

1
README.md Normal file
View file

@ -0,0 +1 @@
# ffi_test

9
lakefile.lean Normal file
View 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
View file

@ -0,0 +1 @@
stable