Skip to content

Integrated pre-v4.1.0 changes into regular changelog #26

Integrated pre-v4.1.0 changes into regular changelog

Integrated pre-v4.1.0 changes into regular changelog #26

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