File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed
samples/client/petstore/ocaml Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Samples OCaml
2
+
3
+ on :
4
+ push :
5
+ paths :
6
+ - ' samples/client/petstore/ocaml/**'
7
+ pull_request :
8
+ paths :
9
+ - ' samples/client/petstore/ocaml/**'
10
+
11
+ jobs :
12
+ build :
13
+ name : Build OCaml
14
+ runs-on : ubuntu-latest
15
+ strategy :
16
+ fail-fast : false
17
+ matrix :
18
+ sample :
19
+ - ' samples/client/petstore/ocaml/'
20
+ steps :
21
+ - uses : actions/checkout@v4
22
+ - name : Set-up OCaml
23
+ uses : ocaml/setup-ocaml@v3
24
+ with :
25
+ ocaml-compiler : 5
26
+ - name : Install
27
+ run : opam install . --deps-only --with-test
28
+ working-directory : ${{ matrix.sample }}
29
+ - name : Install Misc
30
+ run : opam install dune ppx_deriving_yojson conf-libev lwt cohttp-lwt-unix.5.3.0 cohttp-async.5.3.0
31
+ working-directory : ${{ matrix.sample }}
32
+ - name : Build
33
+ run : opam exec -- dune build
34
+ working-directory : ${{ matrix.sample }}
Original file line number Diff line number Diff line change 21
21
#docs/*.md
22
22
# Then explicitly reverse the ignore rule for a single file:
23
23
#!docs/README.md
24
+ #
You can’t perform that action at this time.
0 commit comments