We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f64168 commit 17f14a4Copy full SHA for 17f14a4
.github/workflows/docs.yml
@@ -0,0 +1,21 @@
1
+name: docs
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+steps:
9
+ - name: checkout
10
+ uses: actions/checkout@v2
11
12
+ - name: set up ocaml
13
+ uses: avsm/setup-ocaml@v1
14
+ with:
15
+ ocaml-version: 4.10.0
16
17
+ - name: install dependencies
18
+ run: opam install ounit lablgtk cairo2 cairo2-gtk
19
20
+ - name: make docs
21
+ run: make docs
Makefile
@@ -2,3 +2,10 @@
default:
cd core && make
cd app && make fresh
+docs: default
+ cd core && make docs
+clean:
+ cd core && make clean
+ cd app && make clean
0 commit comments