Skip to content

Update changelog for version 0.8.0 #30

Update changelog for version 0.8.0

Update changelog for version 0.8.0 #30

Workflow file for this run

name: main
on:
- pull_request
- push
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
ocaml-compiler:
- 4.13.x
- 4.12.x
- 4.11.x
- 4.10.x
- 4.09.x
- 4.08.x
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam pin add ppx_blob.dev . --no-action
- run: opam depext ppx_blob --yes --with-test
- run: opam install . --deps-only --with-test
- run: opam exec -- dune build @all @runtest
integration-test:
strategy:
fail-fast: false
matrix:
test-dir:
- dune-lang-1
- dune-lang-3
- ocamlbuild
- ocamlopt
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: 4.11.x
- run: opam pin add ppx_blob.dev .
- run: opam pin add foo "integration-test/${{ matrix.test-dir }}"
- run: opam exec -- make clean run
working-directory: "integration-test/${{ matrix.test-dir }}"