feat: let either work with uninformative or if the goal is a prop #131
Workflow file for this run
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: Build | |
on: [push, workflow_dispatch] | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up git repository | |
uses: actions/checkout@v3 | |
- name: Build plugin | |
uses: coq-community/docker-coq-action@v1 | |
with: | |
custom_image: 'coqorg/coq:8.17-ocaml-4.14-flambda' | |
opam_file: 'coq-waterproof.opam' | |
before_script: | | |
startGroup "Install dependencies" | |
sudo apt-get -y -q install binutils make csh g++ sed gawk autoconf automake autotools-dev | |
endGroup |