Update md2mld.opam #73
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: md2mld CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
run: | |
name: Tests | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
# no special functionality to test in macos-latest or windows-latest | |
operating-system: [ubuntu-latest] | |
ocaml-compiler: | |
- 4.14.x | |
- 5.x | |
steps: | |
- uses: actions/checkout@master | |
- uses: ocaml/setup-ocaml@v3 | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
dune-cache: true | |
- if: ${{ matrix.ocaml-compiler == '4.14.x' }} | |
run: | | |
opam install ocamlformat.0.25.1 | |
opam exec -- dune build @fmt | |
- run: opam pin add md2mld.dev . --no-action | |
- run: opam install md2mld --yes --deps-only | |
- run: opam install -t md2mld |