Skip to content

Builds, tests & co

Builds, tests & co #12

Workflow file for this run

name: Builds, tests & co
on:
push:
branches:
- 'master'
pull_request:
permissions: read-all
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
# - macos-latest
# - windows-latest
ocaml-compiler:
- '4.08'
- '5'
runs-on: ${{ matrix.os }}
steps:
- name: Checkout tree
uses: actions/checkout@v5
- name: Set-up OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam install . --deps-only --with-test
- run: opam exec -- dune build -p notty-community
- run: opam exec -- dune runtest -p notty-community
lint-doc:
runs-on: ubuntu-latest
steps:
- name: Checkout tree
uses: actions/checkout@v5
- name: Set-up OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: '5'
- uses: ocaml/setup-ocaml/lint-doc@v3
lint-opam:
runs-on: ubuntu-latest
steps:
- name: Checkout tree
uses: actions/checkout@v5
- name: Set-up OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: '5'
- uses: ocaml/setup-ocaml/lint-opam@v3