chore: update toolchain #4696
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: std4 test build | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
jobs: | |
build: | |
name: std4 test build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: install elan | |
run: | | |
set -o pipefail | |
curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | sh -s -- --default-toolchain none -y | |
~/.elan/bin/lean --version | |
echo "$HOME/.elan/bin" >> $GITHUB_PATH | |
- name: Checkout and compile std4 | |
run: | | |
cd ../ | |
git clone https://github.com/leanprover/std4 | |
cd std4 | |
lake build | |
- name: generate docs | |
run: | | |
cd ../ | |
./doc-gen4/test_docs.sh "std4" "doc-gen4" |