-
Notifications
You must be signed in to change notification settings - Fork 11
39 lines (32 loc) · 931 Bytes
/
lean_build.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
on:
pull_request:
push:
name: ci
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: install elan
run: |
set -o pipefail
curl -sSfL https://github.com/leanprover/elan/releases/download/v1.4.2/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: build MatrixCookbook
run: |
lake exe cache get
lake build
- name: Make progress bar
run: |
mkdir build
lean env lean analyze.lean > build/progress_bar.svg
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: 'build'
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/lean4'
id: deployment
uses: actions/deploy-pages@v1