File tree Expand file tree Collapse file tree 1 file changed +36
-36
lines changed
Expand file tree Collapse file tree 1 file changed +36
-36
lines changed Original file line number Diff line number Diff line change 1- name : Main workflow
2-
3- on :
4- pull_request :
5- push :
6- schedule :
7- # Prime the caches every Monday
8- - cron : 0 1 * * MON
9-
10- jobs :
11- build :
12- strategy :
13- fail-fast : false
14- matrix :
15- os :
16- - macos-latest
17- - windows-latest
18- ocaml-compiler :
19- - 4.13.x
20-
21- runs-on : ${{ matrix.os }}
22-
23- steps :
24- - name : Checkout code
25- uses : actions/checkout@v2
26-
27- - name : Use OCaml ${{ matrix.ocaml-compiler }}
28- uses : ocaml/setup-ocaml@v2
29- with :
30- ocaml-compiler : ${{ matrix.ocaml-compiler }}
31-
32- - run : opam install . --deps-only --with-test
33-
34- - run : opam exec -- dune build
35-
36- - run : opam exec -- dune runtest
1+ name : Main workflow
2+
3+ on :
4+ pull_request :
5+ push :
6+ schedule :
7+ # Prime the caches every Monday
8+ - cron : 0 1 * * MON
9+
10+ jobs :
11+ build :
12+ strategy :
13+ fail-fast : false
14+ matrix :
15+ os :
16+ - macos-latest
17+ - windows-latest
18+ ocaml-compiler :
19+ - 4.13.x
20+
21+ runs-on : ${{ matrix.os }}
22+
23+ steps :
24+ - name : Checkout code
25+ uses : actions/checkout@v2
26+
27+ - name : Use OCaml ${{ matrix.ocaml-compiler }}
28+ uses : ocaml/setup-ocaml@v2
29+ with :
30+ ocaml-compiler : ${{ matrix.ocaml-compiler }}
31+
32+ - run : opam install . --deps-only --with-test
33+
34+ - run : opam exec -- dune build
35+
36+ - run : opam exec -- dune runtest
You can’t perform that action at this time.
0 commit comments