GPS Exchange Format library/CLI in OCaml

ci: opam init

+19 -10
+19 -10
.tangled/workflows/build.yml
··· 5 5 dependencies: 6 6 nixpkgs: 7 7 - shell 8 + - opam 9 + - git 10 + - gnupatch 11 + - gnumake 12 + - gnutar 13 + - diffutils 14 + - gzip 15 + - bzip2 8 16 - gcc 9 17 - dune_3 10 18 - ocaml 11 - - ocamlpackages.xmlm 12 - - ocamlpackages.alcotest 13 - - ocamlpackages.eio 14 - - ocamlpackages.fmt 15 - - ocamlpackages.eio_main 16 - - ocamlpackages.ppx_expect 17 - - ocamlpackages.cmdliner 18 - - ocamlpackages.ptime 19 19 20 20 steps: 21 - - name: dune 21 + - name: opam 22 + command: | 23 + opam init --disable-sandboxing -any 24 + - name: switch 22 25 command: | 23 - dune build 26 + opam install . --unsafe-yes --deps-only 27 + - name: build 28 + command: | 29 + opam exec -- dune build 30 + - name: test 31 + command: | 32 + opam exec -- dune runtest