fix: Install elan in pipeline
This commit is contained in:
parent
dd6efc8485
commit
5379b0abe2
|
@ -28,6 +28,13 @@ jobs:
|
||||||
pip install poetry
|
pip install poetry
|
||||||
poetry install --only doc
|
poetry install --only doc
|
||||||
|
|
||||||
|
- name: install elan
|
||||||
|
run: |
|
||||||
|
set -o pipefail
|
||||||
|
curl -sSfL https://github.com/leanprover/elan/releases/download/v3.1.1/elan-x86_64-unknown-linux-gnu.tar.gz | tar xz
|
||||||
|
./elan-init -y --default-toolchain none
|
||||||
|
echo "$HOME/.elan/bin" >> "${GITHUB_PATH}"
|
||||||
|
|
||||||
# Build the book
|
# Build the book
|
||||||
- name: Build the book
|
- name: Build the book
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue