Skip to content

feat: Server.Config.{reuse_port,reuse_addr} #125

feat: Server.Config.{reuse_port,reuse_addr}

feat: Server.Config.{reuse_port,reuse_addr} #125

Workflow file for this run

name: Opam Pipeline
on:
pull_request:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build and test
strategy:
fail-fast: false
matrix:
os:
# - macos-latest
- ubuntu-latest
ocaml-compiler:
- 5.x
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: Install locally
run: |
opam pin add eio --dev-repo -y
opam pin add eio_linux --dev-repo -y
opam pin add eio_posix --dev-repo -y
opam pin add eio_main --dev-repo -y
opam install .