-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from mseri/fixups
Port to dune 2.0 and introduce github actions
- Loading branch information
Showing
10 changed files
with
276 additions
and
255 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
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-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' ] | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: avsm/[email protected] | ||
with: | ||
ocaml-version: ${{ matrix.ocaml-version }} | ||
- run: opam pin add md2mld.dev . --no-action | ||
- run: opam install md2mld --yes --deps-only | ||
- run: opam install -t md2mld |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
profile=janestreet | ||
wrap-comments=false | ||
let-binding-spacing=sparse |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
(lang dune 1.4) | ||
(lang dune 2.0) | ||
(name md2mld) |
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
Oops, something went wrong.