Skip to content

Commit 4274a49

Browse files
author
Lucas Pluvinage
committed
macos
1 parent 2fb455c commit 4274a49

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/CI.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
operating-system: [ubuntu-latest]
10-
ocaml-version: [4.10.0, 4.11.0]
10+
ocaml-version: [4.10.2, 4.11.2]
1111
runs-on: ${{ matrix.operating-system }}
1212
steps:
1313
- uses: actions/checkout@v2
@@ -38,3 +38,16 @@ jobs:
3838
run: opam exec -- dune build @install --workspace dune-workspace.freestanding
3939
- name: Running tests (freestanding)
4040
run: opam exec -- dune runtest --workspace dune-workspace.freestanding
41+
MacOS:
42+
runs-on: macos-latest
43+
steps:
44+
- uses: actions/checkout@v2
45+
- uses: actions-ml/setup-ocaml@master
46+
with:
47+
ocaml-version: 4.11.2
48+
- name: Dune, global GMP
49+
run: opam depext -iyt conf-gmp dune
50+
- name: Compiling example project
51+
run: opam exec -- dune build @install
52+
- name: Running tests
53+
run: opam exec -- dune runtest

0 commit comments

Comments
 (0)