Skip to content

Commit bf1ff67

Browse files
authored
Add a dune package management GHA workflow (#498)
1 parent 9f804a9 commit bf1ff67

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/build-dune.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
continue-on-error: true
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
- name: Use dune
17+
uses: ocaml-dune/setup-dune@v0.0.1
18+
with:
19+
automagic: true

0 commit comments

Comments
 (0)