Skip to content

Commit 2bc8efa

Browse files
committed
Added github action
1 parent 14cb216 commit 2bc8efa

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Lean Action CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- lakefile.lean
9+
- lake-manifest.json
10+
- lean-toolchain
11+
- "src/**"
12+
pull_request:
13+
paths:
14+
- lakefile.lean
15+
- lake-manifest.json
16+
- lean-toolchain
17+
- "src/**"
18+
workflow_dispatch:
19+
20+
jobs:
21+
22+
lean:
23+
runs-on: ubuntu-latest
24+
steps:
25+
- uses: actions/checkout@v4
26+
- uses: leanprover/lean-action@v1
27+
with:
28+
lake-package-directory: .

0 commit comments

Comments
 (0)