This repository was archived by the owner on Sep 28, 2024. It is now read-only.
support separate Docker image for streaming, introduced in v4.3.0b1 #123
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run unit tests | |
on: | |
push: | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
e2e-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout tree | |
uses: actions/checkout@v4 | |
- name: Set-up OCaml | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: "5.2.0" | |
- run: opam install . --deps-only --with-test | |
- run: opam exec -- make test |