[WIP] Groupoid interpretation #413
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
| on: | |
| pull_request: | |
| jobs: | |
| build_project: | |
| runs-on: ubuntu-latest | |
| name: Build project | |
| steps: | |
| - name: Checkout project | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install elan | |
| run: curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | sh -s -- -y --default-toolchain none | |
| - name: Get cache | |
| run: ~/.elan/bin/lake exe cache get | |
| - name: Build project | |
| run: ~/.elan/bin/lake build | |
| - name: Build HoTTLean.Model.Natural | |
| run: ~/.elan/bin/lake build NaturalModel | |
| - name: Run tests | |
| run: ~/.elan/bin/lake test |