Skip to content

Commit fec7438

Browse files
committed
Add a dune package management GHA workflow
1 parent 3322ada commit fec7438

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/setup-dune@v0.0.1
17+
with:
18+
automagic: true

0 commit comments

Comments
 (0)