Skip to content

Prepare contract 0.2.0 #13

Prepare contract 0.2.0

Prepare contract 0.2.0 #13

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: 5.3.x
- name: Install dependencies
run: opam install . --deps-only --with-test -y
- name: Build
run: opam exec -- dune build @all
- name: Test
run: opam exec -- dune runtest
- name: Lint opam file
run: opam lint contract.opam