Make force-with-lease the default #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |