We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06c8e86 commit 2e3613dCopy full SHA for 2e3613d
.github/workflows/main.yml
@@ -23,20 +23,14 @@ jobs:
23
- name: Checkout tree
24
uses: actions/checkout@v4
25
26
- - name: Set-up OCaml
+ - name: Set-up OCaml ${{ matrix.ocaml-compiler }}
27
uses: ocaml/setup-ocaml@v3
28
with:
29
ocaml-compiler: 5
30
31
- - name: Install OS dependencies
32
- run: opam install --depext-only .
+ - run: opam install . --deps-only --with-test
33
34
- - name: Install OCaml dependencies
35
- run: opam install . --deps-only --with-test
+ - run: opam exec -- dune build
36
37
- - name: Build project
38
- run: opam exec -- dune build
39
-
40
- - name: Run tests
41
- run: opam exec -- dune runtest
+ - run: opam exec -- dune runtest
42
# vim: filetype=yaml
0 commit comments