mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-05-05 17:04:52 -04:00
* use docker images for CI * run gha as root in docker using the opam user wouldn't work for actions like checkout * make our own docker images from ubuntu LTS * details * fix eio step * fix build issues in docker
18 lines
293 B
YAML
18 lines
293 B
YAML
name: format
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
format:
|
|
name: format
|
|
runs-on: ubuntu-latest
|
|
container: ghcr.io/ocaml-tracing/ocaml-opentelemetry/ci-4.14:latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- run: opam exec -- make format-check
|