Skip to content

Commit b0e0d61

Browse files
authored
Add a dune package management GHA workflow (#2696)
This introduces a workflow for dune package management. It would help us ensure the package builds with dune developer preview
1 parent 9ae5986 commit b0e0d61

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build-dune.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build on Dune PM
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
strategy:
8+
matrix:
9+
runs-on: [ ubuntu-latest, macos-latest ]
10+
runs-on: ${{ matrix.runs-on }}
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
- name: Use dune
16+
uses: ocaml-dune/[email protected]
17+
with:
18+
automagic: true

0 commit comments

Comments
 (0)