Skip to content

Commit 2293c31

Browse files
committed
DEBUG
1 parent 2ad405e commit 2293c31

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/binaryen.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: build
2+
3+
on:
4+
pull_request:
5+
push:
6+
7+
jobs:
8+
build:
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
os:
13+
- windows-latest
14+
ocaml-compiler:
15+
- "4.14"
16+
- "5.03"
17+
18+
runs-on: ${{ matrix.os }}
19+
20+
steps:
21+
- name: Set-up OCaml ${{ matrix.ocaml-compiler }}
22+
uses: ocaml/setup-ocaml@v3
23+
with:
24+
ocaml-compiler: ${{ matrix.ocaml-compiler }}
25+
26+
- run: opam install wasm_of_ocaml-compiler

0 commit comments

Comments
 (0)