Skip to content

web: fix wrong otel parent scope #110

web: fix wrong otel parent scope

web: fix wrong otel parent scope #110

Workflow file for this run

name: devkit
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
ocaml-version:
- 4.14
- 5.1
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Update apt
run: sudo apt-get update
- name: Set up OCaml ${{ matrix.ocaml-version }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-version }}
dune-cache: true
opam-depext-flags: "--with-test"
allow-prerelease-opam: true
- name: Install OCaml deps
run: opam install . --deps-only --with-test
- name: Pin libevent
run: opam pin add libevent --dev
- name: Build
run: opam exec -- dune build --profile=release
- name: Test
run: opam exec -- dune runtest --profile=release