-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (34 loc) · 905 Bytes
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Main workflow
on:
- pull_request
- push
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- macos-14 # beta runner for macos arm64
- macos-latest
- ubuntu-latest
# - windows-latest
ocaml-compiler:
- "5.1"
- "4.14"
- "4.12"
- "4.10"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
opam-local-packages: |
*.opam
- run: opam depext owl-plplot --with-test
- run: |
opam install owl-plplot --yes --deps-only --with-test
opam exec -- dune build -p owl-base
opam exec -- dune runtest -p owl-base