Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Configure Renovate

Configure Renovate #35

Workflow file for this run

name: Test and Build OCaml APM Client
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
ocaml-version:
- 4.13.x
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use OCaml ${{ matrix.ocaml-version }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-version }}
dune-cache: true
- run: echo "⚡️ Ride the Camel"
- run: opam install . --deps-only --with-test -y
- run: opam exec -- dune runtest