Skip to content

Initial CI setup

Initial CI setup #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
fail-fast: false
matrix:
ocaml: ["4.14.x"]
coq: ["8.15.2"]
os: ["ubuntu-22.04"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Install OCaml
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml }}
- name: Add coq-released repo
shell: bash
run: opam repo add coq-released https://coq.inria.fr/opam/released
- name: Install Coq
shell: bash
run: opam install -y coq=${{ matrix.coq }}
- name: Build entree-specs
shell: bash
run: opam exec -- make -j