Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 18 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,26 @@ jobs:
matrix:
# no special functionality to test in macos-latest or windows-latest
operating-system: [ubuntu-latest]
ocaml-version: [ '4.11.1', '4.10.1', '4.09.1', '4.08.1', '4.07.1', '4.06.1', '4.05.0', '4.04.2', '4.03.0', '4.02.3' ]
ocaml-compiler:
- 4.12.x
- 4.11.x
- 4.10.x
- 4.09.x
- 4.08.x
- 4.07.x
- 4.06.x
- 4.05.x
- 4.04.x
steps:
- uses: actions/checkout@master
- uses: avsm/setup-ocaml@v1.0
- uses: ocaml/setup-ocaml@v2
with:
ocaml-version: ${{ matrix.ocaml-version }}
ocaml-compiler: ${{ matrix.ocaml-compiler }}
dune-cache: true
- if: ${{ matrix.ocaml-compiler == '4.12.x' }}
run: |
opam install ocamlformat
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
- run: opam install -t md2mld
2 changes: 1 addition & 1 deletion md2mld.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ depends: [
"ocaml"
"dune" {>= "2.0"}
"base-bytes"
"omd"
"omd" {= "2.0.0~alpha1"}
]
build: ["dune" "build" "-p" name "-j" jobs "@install" "@runtest" {with-test}]
dev-repo: "git+https://github.com/mseri/md2mld.git"
Loading