We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 187045e commit a7d63afCopy full SHA for a7d63af
.github/workflows/build.yml
@@ -0,0 +1,19 @@
1
+name: Build
2
+on: [push, pull_request, workflow_dispatch]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - name: Install dependencies
8
+ run: |
9
+ sudo apt-get update
10
+ sudo apt-get install ocaml ocamlbuild libnum-ocaml-dev autoconf automake indent libtool fig2dev
11
+
12
+ - name: Checkout
13
+ uses: actions/checkout@v4
14
15
+ - name: Bootstrap
16
+ run: sh bootstrap.sh
17
18
+ - name: Build
19
+ run: make
0 commit comments