this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci

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