-
Notifications
You must be signed in to change notification settings - Fork 125
49 lines (40 loc) · 1.14 KB
/
workflow.yml
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
43
44
45
46
47
48
49
name: Main workflow
on:
pull_request:
push:
schedule:
- cron: '0 1 * * SAT'
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
Tests:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
ocaml:
- ocaml-base-compiler.5.0.0~alpha0
- 4.14.0
include:
- {os: ubuntu-latest, ocaml: 4.13.1}
- {os: ubuntu-latest, ocaml: 4.12.1}
- {os: ubuntu-latest, ocaml: 4.11.2}
exclude:
- {os: windows-latest, ocaml: ocaml-base-compiler.5.0.0~alpha0}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup OCaml ${{ matrix.ocaml }}
uses: ocaml/setup-ocaml@v2
with:
cache-prefix: v1-${{ matrix.os }}-${{ matrix.ocaml }}
dune-cache: true
ocaml-compiler: ${{ matrix.ocaml }}
- name: Build dependencies
run: opam install . --deps-only --with-test
- name: Build library
run: opam exec -- dune build
- name: Run test suite
run: opam exec -- dune runtest