Skip to content

Broke GitHub workflow line #28

Broke GitHub workflow line

Broke GitHub workflow line #28

Workflow file for this run

name: Builds, tests & co
on:
- pull_request
- push
- workflow_dispatch
permissions: read-all
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout tree
uses: actions/checkout@v4
- name: Set-up OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: 5
- name: Set PKG_CONFIG_PATH for libpq (keg-only)
run: |
echo "PKG_CONFIG_PATH=/opt/homebrew/opt/libpq/lib/pkgconfig" \
>> $GITHUB_ENV
- run: opam install . --deps-only --with-test
- run: opam exec -- dune build
- run: opam exec -- dune runtest
# vim: filetype=yaml