OCaml HTTP cookie handling library with support for Eio-based storage jars

+ci

+49
+49
.tangled/workflows/build.yml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + branch: ["main"] 4 + 5 + engine: nixery 6 + 7 + dependencies: 8 + nixpkgs: 9 + - shell 10 + - stdenv 11 + - findutils 12 + - binutils 13 + - libunwind 14 + - ncurses 15 + - opam 16 + - git 17 + - gawk 18 + - gnupatch 19 + - gnum4 20 + - gnumake 21 + - gnutar 22 + - gnused 23 + - gnugrep 24 + - diffutils 25 + - gzip 26 + - bzip2 27 + - gcc 28 + - ocaml 29 + 30 + steps: 31 + - name: opam 32 + command: | 33 + opam init --disable-sandboxing -any 34 + - name: switch 35 + command: | 36 + opam install . --confirm-level=unsafe-yes --deps-only 37 + - name: build 38 + command: | 39 + opam exec -- dune build 40 + - name: switch-test 41 + command: | 42 + opam install . --confirm-level=unsafe-yes --deps-only --with-test 43 + - name: test 44 + command: | 45 + opam exec -- dune runtest --verbose 46 + - name: doc 47 + command: | 48 + opam install -y odoc 49 + opam exec -- dune build @doc