Merge fix/psh-rank-bounded into main — Descent System + Cycle F₂ Closure #711
Workflow file for this run
This file contains hidden or 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: build | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Lean toolchain from repo | |
| run: | | |
| curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | sh -s -- -y | |
| source $HOME/.elan/env | |
| elan toolchain install $(cat lean-toolchain) | |
| elan default $(cat lean-toolchain) | |
| - name: Build | |
| run: | | |
| source $HOME/.elan/env | |
| lake update | |
| lake build | |