Skip to content

Use GitHub flavours of block quotes in README.md #34

Use GitHub flavours of block quotes in README.md

Use GitHub flavours of block quotes in README.md #34

Workflow file for this run

name: CI
on:
pull_request:
types: [synchronize, opened, reopened]
push:
branches: [main]
jobs:
build:
name: ${{ matrix.os }} / OCaml ${{ matrix.ocaml-compiler }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
ocaml-compiler:
- 5.0.0
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam install . --deps-only --with-doc --with-test
- run: opam exec -- dune build
- run: opam exec -- dune runtest
- name: Upload the build artifact
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.os }}-${{ matrix.ocaml-version }}-world.exe
path: _build/default/world.exe
lint-doc:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use OCaml 5.0.0
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: 5.0.0
dune-cache: true
- name: Lint doc
uses: ocaml/setup-ocaml/lint-doc@v2
lint-fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use OCaml 5.0.0
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: 5.0.0
dune-cache: true
- name: Lint fmt
uses: ocaml/setup-ocaml/lint-fmt@v2