Simpler build. #2
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] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install packages | |
| run: | | |
| sudo apt-get purge -y man-db | |
| sudo apt-get -y install agda | |
| - name: Download cubical library | |
| run: | | |
| git clone https://github.com/agda/cubical.git -b v0.5 | |
| mkdir ~/.agda | |
| echo "cubical" > ~/.agda/defaults | |
| echo "`pwd`/cubical/cubical.agda-lib" > ~/.agda/libraries | |
| - name: Check Agda | |
| run: make |