Skip to content

Commit 04347a5

Browse files
authored
Merge pull request #468 from Sudha247/dune-pkg-gha
Add a dune package management GHA workflow
2 parents d8e415f + 5607178 commit 04347a5

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/dune-build.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/[email protected]
18+
with:
19+
automagic: true

0 commit comments

Comments
 (0)