Isabelle 1988-1990 with 1990 A5 removed #65
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
on: | |
push: | |
pull_request: | |
name: build lean | |
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/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 | |
- uses: actions/checkout@v3 | |
- name: Set up olean cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache | |
key: oleans | |
- name: Configure | |
working-directory: lean4 | |
run: | | |
lake exe cache get | |
- name: Build | |
working-directory: lean4 | |
run: | | |
lake build | |
- name: Save olean cache | |
working-directory: lean4 | |
run: | | |
lake exe cache pack |