Update Properties.agda #812
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
name: Compile Agda and Deploy HTML | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
cubical-ref: ["v0.6"] | |
binary-ref: ["v0.2"] | |
agda-ver: ["2.6.4"] | |
steps: | |
- uses: wenkokke/[email protected] | |
with: | |
agda-version: ${{ matrix.agda-ver }} | |
agda-libraries: | | |
https://github.com/agda/cubical.git#${{ matrix.cubical-ref }} | |
https://github.com/oisdk/agda-binary.git#${{ matrix.binary-ref }} | |
- name: Checkout main | |
uses: actions/[email protected] | |
- name: Compile agda library | |
run: ./scripts/render.sh | |
- name: Deploy html to github pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs |