Skip to content

CI: better report to slack #27

CI: better report to slack

CI: better report to slack #27

Workflow file for this run

name: build
on:
push:
pull_request:
branches:
- main
jobs:
run:
name: build
strategy:
matrix:
os:
- ubuntu-latest
#- windows-latest # see https://github.com/ocaml/setup-ocaml/issues/361
#- macos-latest # clogs CI
ocaml-compiler:
- '4.08.0'
- '5.0.0'
runs-on: ${{ matrix.os }}
steps:
- uses: imandra-ai/imandra-build-config/actions/slack-send-build-status@master
with:
slack-webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }}
- uses: actions/checkout@v2
- uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam pin -n .
- run: opam depext -yt cbor-pack cbor-pack-ppx
- run: opam install -t . --deps-only
- run: opam exec -- dune build --ignore-promoted-rules
- run: opam exec -- dune runtest --ignore-promoted-rules
if: ${{ matrix.os == 'ubuntu-latest' && matrix.ocaml-compiler == '5.0.0' }}