-
Notifications
You must be signed in to change notification settings - Fork 2
57 lines (48 loc) · 1.36 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
on:
push:
pull_request:
name: Continuous Integration
jobs:
build:
strategy:
matrix:
toolchain:
- "leanprover/lean4:4.3.0"
- "leanprover/lean4:4.4.0"
- "leanprover/lean4:4.5.0"
- "leanprover/lean4:4.6.0"
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Install elan
run: |
set -o pipefail
curl -sSfL https://github.com/leanprover/elan/releases/download/v3.0.0/elan-x86_64-unknown-linux-gnu.tar.gz | tar xz
./elan-init -y --default-toolchain none
echo "$HOME/.elan/bin" >> $GITHUB_PATH
- uses: actions/checkout@v3
- name: List all files
run: |
find . -name "*.lean" -type f
- name: Select Lean version
run: |
echo "${{ matrix.toolchain }}" > lean-toolchain
- name: Lean version
run: |
lean --version
- name: Cache .lake
uses: actions/cache@v3
with:
path: .lake
key: ${{ runner.os }}-${{ hashFiles('lake-manifest.json') }}-${{ hashFiles('lean-toolchain') }}
- name: Build the project
run: |
lake build
- name: Configure demo/test subproject
run: |
pushd demo
lake update
popd
- name: Run tests
run: |
lake exe subverso-tests