Skip to content

bump up version

bump up version #38

Workflow file for this run

name: CI
on:
- pull_request
- push
jobs:
build:
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
ocaml-compiler:
- "4.14"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout tree
uses: actions/checkout@v4
- name: Set-up OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: Install dependencies
run: opam install . --deps-only
- name: Build
run: opam exec -- dune build
- name: Package build
run: opam exec -- dune build -p rethfl