Skip to content

chore: updates for melange 3.0 #263

chore: updates for melange 3.0

chore: updates for melange 3.0 #263

Workflow file for this run

name: build
on:
pull_request:
push:
branch:
- master
jobs:
build-ocaml:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
ocaml-compiler:
- 4.14.x
package:
- decoders-bencode
- decoders-cbor
- decoders-ezjsonm
- decoders-ezxmlm
- decoders-jsonaf
- decoders-jsonm
- decoders-msgpck
- decoders-sexplib
- decoders-yojson
include:
- os: ubuntu-latest
ocaml-compiler: 4.08.x
package: decoders-yojson
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
cache-prefix: v2
ocaml-compiler: ${{ matrix.ocaml-compiler }}
opam-depext-flags: --with-test
opam-local-packages: |
decoders.opam
${{ matrix.package }}.opam
- run: opam install "${{ matrix.package }}" --with-test
build-melange:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
ocaml-compiler:
- 5.1.x
package:
- melange-decoders
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'npm'
- run: npm ci
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
opam-depext-flags: --with-test
opam-local-packages: |
decoders.opam
${{ matrix.package }}.opam
- run: opam install "${{ matrix.package }}" --with-test
- run: opam exec -- dune build @melange
- run: npx jest