Skip to content

CI

CI #1442

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- "**"
schedule:
# every day at 11am UTC (6am EST)
- cron: "0 11 * * *"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
coq:
- "dev"
- "8.19"
- "8.18"
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: coq-community/docker-coq-action@v1
with:
opam_file: "iris-simp-lang.opam"
coq_version: "${{ matrix.coq }}"
before_install: |
startGroup "Add Iris repo"
opam repo add iris-dev https://gitlab.mpi-sws.org/iris/opam.git
endGroup
startGroup "Print opam config"
opam config list; opam repo list; opam list
endGroup
build-release:
name: build (released iris, latest coq)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: coq-community/docker-coq-action@v1
with:
opam_file: "iris-simp-lang.opam"
coq_version: "latest"
# See also:
# https://github.com/coq-community/docker-coq-action#readme
# https://github.com/erikmd/docker-coq-github-action-demo