tangled
alpha
login
or
join now
anil.recoil.org
/
unpac-unpac
0
fork
atom
The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork
atom
overview
issues
pulls
pipelines
Only test on Windows with GitHub actions
Vesa Karvonen
2 years ago
1cf11e2e
812d2410
-32
1 changed file
expand all
collapse all
unified
split
vendor
opam
thread-table
.github
workflows
workflow.yml
-32
vendor/opam/thread-table/.github/workflows/workflow.yml
···
7
7
- main
8
8
9
9
jobs:
10
10
-
build:
11
11
-
strategy:
12
12
-
fail-fast: false
13
13
-
matrix:
14
14
-
os:
15
15
-
- ubuntu-latest
16
16
-
- macos-latest
17
17
-
ocaml-compiler:
18
18
-
- 4.08.0
19
19
-
- 4.x
20
20
-
- 5.x
21
21
-
22
22
-
runs-on: ${{ matrix.os }}
23
23
-
24
24
-
steps:
25
25
-
- name: Checkout code
26
26
-
uses: actions/checkout@v3
27
27
-
28
28
-
- name: Use OCaml ${{ matrix.ocaml-compiler }}
29
29
-
uses: ocaml/setup-ocaml@v2
30
30
-
with:
31
31
-
ocaml-compiler: ${{ matrix.ocaml-compiler }}
32
32
-
33
33
-
- name: Install dependencies
34
34
-
run: opam install . --deps-only --with-test
35
35
-
36
36
-
- name: Build
37
37
-
run: opam exec -- dune build
38
38
-
39
39
-
- name: Test
40
40
-
run: opam exec -- dune runtest
41
41
-
42
10
build-windows:
43
11
runs-on: windows-latest
44
12