Skip to content

Commit b210af5

Browse files
authored
Merge pull request #6 from mseri/update
Update for omd 2.0.0~alpha1
2 parents 97ae31f + 9d65d29 commit b210af5

File tree

11 files changed

+350
-89
lines changed

11 files changed

+350
-89
lines changed

.github/workflows/test.yml

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,26 @@ jobs:
1010
matrix:
1111
# no special functionality to test in macos-latest or windows-latest
1212
operating-system: [ubuntu-latest]
13-
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' ]
13+
ocaml-compiler:
14+
- 4.12.x
15+
- 4.11.x
16+
- 4.10.x
17+
- 4.09.x
18+
- 4.08.x
19+
- 4.07.x
20+
- 4.06.x
21+
- 4.05.x
22+
- 4.04.x
1423
steps:
1524
- uses: actions/checkout@master
16-
- uses: avsm/setup-ocaml@v1.0
25+
- uses: ocaml/setup-ocaml@v2
1726
with:
18-
ocaml-version: ${{ matrix.ocaml-version }}
27+
ocaml-compiler: ${{ matrix.ocaml-compiler }}
28+
dune-cache: true
29+
- if: ${{ matrix.ocaml-compiler == '4.12.x' }}
30+
run: |
31+
opam install ocamlformat
32+
opam exec -- dune build @fmt
1933
- run: opam pin add md2mld.dev . --no-action
2034
- run: opam install md2mld --yes --deps-only
21-
- run: opam install -t md2mld
35+
- run: opam install -t md2mld

md2mld.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ depends: [
1111
"ocaml"
1212
"dune" {>= "2.0"}
1313
"base-bytes"
14-
"omd"
14+
"omd" {= "2.0.0~alpha1"}
1515
]
1616
build: ["dune" "build" "-p" name "-j" jobs "@install" "@runtest" {with-test}]
1717
dev-repo: "git+https://github.com/mseri/md2mld.git"

0 commit comments

Comments
 (0)